Skip to content
This repository was archived by the owner on Oct 22, 2020. It is now read-only.

Commit 3d9e709

Browse files
committed
#57 - Auto register AttributeConverter
1 parent 4c4e2cf commit 3d9e709

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/io/ebean/querybean/generator/ModuleMeta.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ class ModuleMeta {
66
private final List<String> entities;
77
private final List<String> other;
88

9-
public ModuleMeta(List<String> entities, List<String> other) {
9+
ModuleMeta(List<String> entities, List<String> other) {
1010
this.entities = entities;
1111
this.other = other;
1212
}
1313

14-
public List<String> getEntities() {
14+
List<String> getEntities() {
1515
return entities;
1616
}
1717

18-
public List<String> getOther() {
18+
List<String> getOther() {
1919
return other;
2020
}
2121
}

0 commit comments

Comments
 (0)