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:
Oliver Gierke
2016-05-12 15:34:18 +02:00
parent db5259292c
commit f29cbf5752
2 changed files with 29 additions and 48 deletions

View File

@@ -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;
}