No effective change - add final modifier

This commit is contained in:
Robin Bygrave
2015-07-31 13:53:10 +12:00
parent 7f2c705b94
commit deed0bb01d
29 changed files with 73 additions and 73 deletions
@@ -147,7 +147,7 @@ public class BeanDescriptor<T> implements MetaBeanInfo {
*/
private volatile BeanPersistListener persistListener;
private volatile BeanQueryAdapter queryAdapter;
private final BeanQueryAdapter queryAdapter;
/**
* If set overrides the find implementation. Server side only.
@@ -16,7 +16,7 @@ public final class BeanFkeyProperty implements ElPropertyValue {
private final String dbColumn;
private final boolean containsMany;
private int deployOrder;
private final int deployOrder;
public BeanFkeyProperty(String prefix, String name, String dbColumn, int deployOrder) {
this(prefix, name, dbColumn, deployOrder, false);
@@ -57,13 +57,13 @@ public class BeanLifecycleAdapterFactory {
private static class MethodsHolder {
private boolean hasListener;
private List<Method> preInserts = new ArrayList<Method>();
private List<Method> postInserts = new ArrayList<Method>();
private List<Method> preUpdates = new ArrayList<Method>();
private List<Method> postUpdates = new ArrayList<Method>();
private List<Method> preDeletes = new ArrayList<Method>();
private List<Method> postDeletes = new ArrayList<Method>();
private List<Method> postLoads = new ArrayList<Method>();
private final List<Method> preInserts = new ArrayList<Method>();
private final List<Method> postInserts = new ArrayList<Method>();
private final List<Method> preUpdates = new ArrayList<Method>();
private final List<Method> postUpdates = new ArrayList<Method>();
private final List<Method> preDeletes = new ArrayList<Method>();
private final List<Method> postDeletes = new ArrayList<Method>();
private final List<Method> postLoads = new ArrayList<Method>();
private boolean hasListener() {
return hasListener;
@@ -64,7 +64,7 @@ public abstract class BeanPropertyAssoc<T> extends BeanProperty {
*/
final boolean isOuterJoin;
String extraWhere;
final String extraWhere;
boolean saveRecurseSkippable;