mirror of
https://github.com/github/codeql.git
synced 2026-02-10 20:21:10 +01:00
17 lines
323 B
Java
Generated
17 lines
323 B
Java
Generated
/*
|
|
* Copyright (C) Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
package play.libs;
|
|
|
|
import java.util.*;
|
|
import java.util.concurrent.*;
|
|
|
|
public class F {
|
|
public static class Promise<A> { // this is needed for play.libs.F for Play 2.3.x
|
|
public static <A> Promise<A> pure(final A a) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|