HHH-3555 - more checkstyle cleanup

This commit is contained in:
Steve Ebersole 2016-02-09 15:20:45 -06:00
parent b1fef6c70b
commit e01e9b52fb
4 changed files with 12 additions and 7 deletions

View File

@ -97,7 +97,8 @@ public class EntitiesConfigurations {
final EntityConfiguration entCfg;
if ( isVersioned( entityName ) ) {
entCfg = get( entityName );
} else {
}
else {
entCfg = getNotVersionEntityConfiguration( entityName );
}
final RelationDescription relDesc = entCfg.getRelationDescription( propertyName );

View File

@ -158,7 +158,8 @@ public class QueryBuilder {
final String effectivePropertyName = propertyName == null ? "" : ".".concat( propertyName );
if ( function == null ) {
projections.add( (distinct ? "distinct " : "") + alias + effectivePropertyName );
} else {
}
else {
projections.add(
function + "(" + (distinct ? "distinct " : "") + alias +
effectivePropertyName + ")"
@ -193,7 +194,8 @@ public class QueryBuilder {
if (first) {
sb.append( " where " );
first = false;
} else {
}
else {
sb.append( " and " );
}
params.build( sb, queryParamValues );

View File

@ -284,7 +284,8 @@ public abstract class AbstractAuditQuery implements AuditQueryImplementor {
// qr is the value of the projection itself
final Pair<String, AuditProjection> projection = projections.get( 0 );
result.add( projection.getSecond().convertQueryResult( enversService, entityInstantiator, projection.getFirst(), revision, qr ) );
} else {
}
else {
// qr is an array where each of its components holds the value of corresponding projection
Object[] qresults = (Object[]) qr;
Object[] tresults = new Object[qresults.length];
@ -295,7 +296,8 @@ public abstract class AbstractAuditQuery implements AuditQueryImplementor {
result.add( tresults );
}
}
} else {
}
else {
entityInstantiator.addInstancesFromVersionsEntities( entityName, result, queryResult, revision );
}
return result;