Skip to content

Commit d21b8eb

Browse files
committed
Coverage
1 parent d67140c commit d21b8eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/examples/joins/UserDynamicSQLSupport.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2020 the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@ public static final class User extends AliasableSqlTable<User> {
3232
public final SqlColumn<Integer> parentId = column("parent_id", JDBCType.INTEGER);
3333

3434
public User() {
35-
super("User", User::new);
35+
super(() -> "User", User::new);
3636
}
3737
}
3838
}

0 commit comments

Comments
 (0)