Skip to content

Commit 15a7c84

Browse files
committed
HHH-11426 : Checkstyle fix
1 parent b66014b commit 15a7c84

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hibernate-entitymanager/src/main/java/org/hibernate/jpa/internal/EntityManagerFactoryImpl.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,8 @@ else if ( entity instanceof ManagedEntity ) {
692692
"(although Hibernate also adapts this support to its proxies); " +
693693
"however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier"
694694
);
695-
return getIdentifierFromPersister( entity ); }
695+
return getIdentifierFromPersister( entity );
696+
}
696697
}
697698

698699
private Object getIdentifierFromPersister(Object entity) {

0 commit comments

Comments
 (0)