HHH-8428 comment & cleanup
This commit is contained in:
parent
023862728f
commit
e5af57585b
|
@ -167,11 +167,8 @@ public class SessionFactoryRegistry {
|
||||||
public SessionFactory getNamedSessionFactory(String name) {
|
public SessionFactory getNamedSessionFactory(String name) {
|
||||||
LOG.debugf( "Lookup: name=%s", name );
|
LOG.debugf( "Lookup: name=%s", name );
|
||||||
final String uuid = nameUuidXref.get( name );
|
final String uuid = nameUuidXref.get( name );
|
||||||
if ( uuid != null ) {
|
// protect against NPE -- see HHH-8428
|
||||||
return getSessionFactory( uuid );
|
return uuid == null ? null : getSessionFactory( uuid );
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public SessionFactory getSessionFactory(String uuid) {
|
public SessionFactory getSessionFactory(String uuid) {
|
||||||
|
|
Loading…
Reference in New Issue