From 09a9b65201569676ac8388d7bfbba6a3039ee1a4 Mon Sep 17 00:00:00 2001 From: Andrig Miller Date: Wed, 25 May 2011 18:01:25 -0600 Subject: [PATCH] HHH-6258: Fixed typo when getting the JdbcServices.class from the serviceRegistry. I forgot to build the source before committing. --- .../main/java/org/hibernate/internal/SessionFactoryImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hibernate-core/src/main/java/org/hibernate/internal/SessionFactoryImpl.java b/hibernate-core/src/main/java/org/hibernate/internal/SessionFactoryImpl.java index ecd579b07d..4f86e83469 100644 --- a/hibernate-core/src/main/java/org/hibernate/internal/SessionFactoryImpl.java +++ b/hibernate-core/src/main/java/org/hibernate/internal/SessionFactoryImpl.java @@ -254,7 +254,7 @@ public void handleEntityNotFound(String entityName, Serializable id) { 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 ) {