HHH-6258: Fixed typo when getting the JdbcServices.class from the serviceRegistry. I forgot to build the source before committing.

This commit is contained in:
Andrig Miller 2011-05-25 18:01:25 -06:00 committed by Steve Ebersole
parent e01bb8a911
commit 09a9b65201
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ public final class SessionFactoryImpl
this,
cfg
);
this.jdbcServices = this.serviceRegistry.getService( JdbcServices );
this.jdbcServices = this.serviceRegistry.getService( JdbcServices.class );
this.dialect = this.jdbcServices.getDialect();
this.sqlFunctionRegistry = new SQLFunctionRegistry( getDialect(), cfg.getSqlFunctions() );
if ( observer != null ) {