DATACMNS-853 - Polishing.
Simplified test case. Formatting in ClassGeneratingPropertyAccessorFactory. Related tickets: DATACMNS-809. Original pull request: #161. Related pull request: #160.
This commit is contained in:
@@ -881,7 +881,7 @@ public class ClassGeneratingPropertyAccessorFactory implements PersistentPropert
|
||||
Class<?> declaringClass = getter.getDeclaringClass();
|
||||
boolean interfaceDefinition = declaringClass.isInterface();
|
||||
|
||||
if(interfaceDefinition){
|
||||
if (interfaceDefinition) {
|
||||
invokeOpCode = INVOKEINTERFACE;
|
||||
}
|
||||
|
||||
@@ -1065,7 +1065,7 @@ public class ClassGeneratingPropertyAccessorFactory implements PersistentPropert
|
||||
Class<?> declaringClass = setter.getDeclaringClass();
|
||||
boolean interfaceDefinition = declaringClass.isInterface();
|
||||
|
||||
if(interfaceDefinition){
|
||||
if (interfaceDefinition) {
|
||||
invokeOpCode = INVOKEINTERFACE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user