[hibernate-commits] Hibernate SVN: r17805 - core/trunk/core/src/main/java/org/hibernate/dialect/resolver.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Oct 20 10:21:52 EDT 2009


Author: jcosta at redhat.com
Date: 2009-10-20 10:21:52 -0400 (Tue, 20 Oct 2009)
New Revision: 17805

Modified:
   core/trunk/core/src/main/java/org/hibernate/dialect/resolver/DialectFactory.java
Log:
HHH-4508 - Fixed 'avalable' typo

Modified: core/trunk/core/src/main/java/org/hibernate/dialect/resolver/DialectFactory.java
===================================================================
--- core/trunk/core/src/main/java/org/hibernate/dialect/resolver/DialectFactory.java	2009-10-20 14:21:02 UTC (rev 17804)
+++ core/trunk/core/src/main/java/org/hibernate/dialect/resolver/DialectFactory.java	2009-10-20 14:21:52 UTC (rev 17805)
@@ -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 avalable" );
+			throw new HibernateException( "'hibernate.dialect' must be set when no Connection available" );
 		}
 		return constructDialect( dialectName );
 	}



More information about the hibernate-commits mailing list