Skip to content

Commit

Permalink
[#1278] Fix test play.db.jpa.JPQLTest
Browse files Browse the repository at this point in the history
[javac]
/home/travis/build/playframework/play1/framework/test-src/play/db/jpa/JPQLTest.java:20:
error: constructor JPQL in class JPQL cannot be applied to given types;
    [javac] 		jpql = new JPQL(null);
    [javac] 		       ^
    [javac]   required: no arguments
    [javac]   found: <null>
  • Loading branch information
xabolcs committed Mar 23, 2022
1 parent 10474d4 commit d65b177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/test-src/play/db/jpa/JPQLTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class JPQLTest {

@BeforeClass
public static void setup(){
jpql = new JPQL(null);
jpql = new JPQL();
}

@Test
Expand Down

0 comments on commit d65b177

Please sign in to comment.