Use protected modifiers for DeclarativeColumnGenerator fields (#805)

This commit is contained in:
Ilya Kuchmin 2018-05-07 18:01:57 +04:00 committed by Yuriy Artamonov
parent c358128ba6
commit dd9d151d59

View File

@ -35,11 +35,11 @@ public class DeclarativeColumnGenerator implements Table.ColumnGenerator {
public static final String NAME = "cuba_DeclarativeColumnGenerator"; public static final String NAME = "cuba_DeclarativeColumnGenerator";
private final String methodName; protected final String methodName;
private final Table table; protected final Table table;
private Method method; protected Method method;
private boolean unableToFindMethod = false; protected boolean unableToFindMethod = false;
public DeclarativeColumnGenerator(Table table, String methodName) { public DeclarativeColumnGenerator(Table table, String methodName) {
this.table = table; this.table = table;
@ -100,4 +100,4 @@ public class DeclarativeColumnGenerator implements Table.ColumnGenerator {
} }
return null; return null;
} }
} }