HHH-6845 small polish: use final when possible

This commit is contained in:
Sanne Grinovero 2011-11-23 16:47:07 +00:00
parent 977dcd1b03
commit b4e65a0c79
1 changed files with 6 additions and 5 deletions

View File

@ -42,12 +42,13 @@ public abstract class BasicLazyInitializer extends AbstractLazyInitializer {
protected static final Object INVOKE_IMPLEMENTATION = new MarkerObject("INVOKE_IMPLEMENTATION");
protected Class persistentClass;
protected Method getIdentifierMethod;
protected Method setIdentifierMethod;
protected boolean overridesEquals;
protected final Class persistentClass;
protected final Method getIdentifierMethod;
protected final Method setIdentifierMethod;
protected final boolean overridesEquals;
protected final CompositeType componentIdType;
private Object replacement;
protected CompositeType componentIdType;
protected BasicLazyInitializer(
String entityName,