We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c4e2cf commit 3d9e709Copy full SHA for 3d9e709
1 file changed
src/main/java/io/ebean/querybean/generator/ModuleMeta.java
@@ -6,16 +6,16 @@ class ModuleMeta {
6
private final List<String> entities;
7
private final List<String> other;
8
9
- public ModuleMeta(List<String> entities, List<String> other) {
+ ModuleMeta(List<String> entities, List<String> other) {
10
this.entities = entities;
11
this.other = other;
12
}
13
14
- public List<String> getEntities() {
+ List<String> getEntities() {
15
return entities;
16
17
18
- public List<String> getOther() {
+ List<String> getOther() {
19
return other;
20
21
0 commit comments