Skip to content

Commit 46a0cbe

Browse files
committed
HHH-6109 format code
1 parent 1b62f92 commit 46a0cbe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/HibernateMappingProcessor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ private void processFetchProfiles() {
237237
);
238238

239239
// processing fetch profiles defined in the <joined-subclass>
240-
processFetchProfilesInJoinedSubclass(classElement.getJoinedSubclass());
240+
processFetchProfilesInJoinedSubclass( classElement.getJoinedSubclass() );
241241
// <union-subclass>
242242
processFetchProfilesInUnionSubclass( classElement.getUnionSubclass() );
243243
// <subclass>
@@ -777,7 +777,7 @@ public void parse(String queryName, List<Serializable> contents, NamedQueryDefin
777777
String query = "";
778778
boolean isQueryDefined = false;
779779
for ( Serializable obj : contents ) {
780-
if(obj == null){
780+
if ( obj == null ) {
781781
continue;
782782
}
783783
else if ( JaxbQueryParamElement.class.isInstance( obj ) ) {
@@ -786,7 +786,7 @@ else if ( JaxbQueryParamElement.class.isInstance( obj ) ) {
786786
}
787787
else if ( String.class.isInstance( obj ) ) {
788788
if ( !isQueryDefined ) {
789-
if( StringHelper.isNotEmpty( obj.toString().trim() )){
789+
if ( StringHelper.isNotEmpty( obj.toString().trim() ) ) {
790790
query = obj.toString().trim();
791791
isQueryDefined = true;
792792
}

0 commit comments

Comments
 (0)