mirror of
https://github.com/github/codeql.git
synced 2026-04-30 03:05:15 +02:00
test case return statements and feedback
This commit is contained in:
@@ -6,11 +6,14 @@ package play.libs;
|
||||
|
||||
import java.util.*;
|
||||
import java.util.concurrent.*;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
//import scala.concurrent.ExecutionContext;
|
||||
// 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 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user