mirror of
https://github.com/github/codeql.git
synced 2026-02-11 12:41:06 +01:00
20 lines
431 B
Java
20 lines
431 B
Java
/*
|
|
* Copyright (C) Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
package play.libs;
|
|
|
|
import java.util.*;
|
|
import java.util.concurrent.*;
|
|
|
|
// import scala.concurrent.ExecutionContext;
|
|
|
|
/** Defines a set of functional programming style helpers. */
|
|
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;
|
|
}
|
|
}
|
|
}
|