HHH-12332 Fix a couple of formatting issues

This commit is contained in:
Guillaume Smet 2018-03-05 23:55:11 +01:00 committed by Andrea Boriero
parent 1e5a8d3c43
commit 0577033193
2 changed files with 7 additions and 6 deletions

View File

@ -44,8 +44,8 @@ public abstract class IndexedCollection extends Collection {
}
public boolean isSame(IndexedCollection other) {
return super.isSame( other )
&& isSame( index, other.index );
return super.isSame( other )
&& isSame( index, other.index );
}
void createPrimaryKey() {

View File

@ -193,7 +193,8 @@ public abstract class AbstractPropertyMapping implements PropertyMapping {
return;
}
throw new IllegalStateException( "Collection mapping in abstract entity type with a type variable is unsupported! Couldn't add property '" + path + "' with type: " + type );
throw new IllegalStateException( "Collection mapping in abstract entity type with a type variable is unsupported! Couldn't add property '"
+ path + "' with type: " + type );
}
else if ( type instanceof EntityType ) {
EntityType entityType1 = (EntityType) existingType;