[hibernate-commits] Hibernate SVN: r17813 - core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/resolver.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Oct 21 04:54:19 EDT 2009


Author: jcosta at redhat.com
Date: 2009-10-21 04:54:18 -0400 (Wed, 21 Oct 2009)
New Revision: 17813

Modified:
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/resolver/DialectFactory.java
Log:
HHH-4508 - Restored original version in CP branch

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/resolver/DialectFactory.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/resolver/DialectFactory.java	2009-10-21 08:46:47 UTC (rev 17812)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/resolver/DialectFactory.java	2009-10-21 08:54:18 UTC (rev 17813)
@@ -104,7 +104,7 @@
 	public static  Dialect buildDialect(Properties properties) {
 		String dialectName = properties.getProperty( Environment.DIALECT );
 		if ( dialectName == null ) {
-			throw new HibernateException( "'hibernate.dialect' must be set when no Connection available" );
+			throw new HibernateException( "'hibernate.dialect' must be set when no Connection avalable" );
 		}
 		return constructDialect( dialectName );
 	}



More information about the hibernate-commits mailing list