mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - add final modifier
This commit is contained in:
@@ -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);
|
||||
|
||||
+7
-7
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user