HHH-4508 - Fixed 'avalable' typo
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17805 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
95d4af906e
commit
a875b19af1
|
@ -104,7 +104,7 @@ public class DialectFactory {
|
|||
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 );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue