mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-04 12:17:41 +08:00
Use protected modifiers for DeclarativeColumnGenerator fields (#805)
This commit is contained in:
parent
c358128ba6
commit
dd9d151d59
@ -35,11 +35,11 @@ public class DeclarativeColumnGenerator implements Table.ColumnGenerator {
|
||||
|
||||
public static final String NAME = "cuba_DeclarativeColumnGenerator";
|
||||
|
||||
private final String methodName;
|
||||
private final Table table;
|
||||
protected final String methodName;
|
||||
protected final Table table;
|
||||
|
||||
private Method method;
|
||||
private boolean unableToFindMethod = false;
|
||||
protected Method method;
|
||||
protected boolean unableToFindMethod = false;
|
||||
|
||||
public DeclarativeColumnGenerator(Table table, String methodName) {
|
||||
this.table = table;
|
||||
@ -100,4 +100,4 @@ public class DeclarativeColumnGenerator implements Table.ColumnGenerator {
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user