HHH-11871 - Skip Metamodel attribute generation for non-Java Bean property methods

Fix indentation issue
This commit is contained in:
Vlad Mihalcea 2017-11-06 17:02:05 +02:00
parent 95ecd7c43a
commit 3ab1974d66
1 changed files with 2 additions and 2 deletions

View File

@ -206,8 +206,8 @@ public class AnnotationMetaEntity implements MetaEntity {
}
else if(
( methodSimpleName.startsWith("get") || methodSimpleName.startsWith("is") ) &&
methodParameterTypes.isEmpty() &&
!"void".equalsIgnoreCase( returnType.toString() ) ) {
methodParameterTypes.isEmpty() &&
!"void".equalsIgnoreCase( returnType.toString() ) ) {
return true;
}
else {