[hibernate-commits] Hibernate SVN: r17803 - 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
Tue Oct 20 10:20:38 EDT 2009


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

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

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-20 11:04:56 UTC (rev 17802)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/resolver/DialectFactory.java	2009-10-20 14:20:37 UTC (rev 17803)
@@ -1,4 +1,4 @@
-/*
+a/*
  * Hibernate, Relational Persistence for Idiomatic Java
  *
  * Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
@@ -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