HHH-8503 whoops

This commit is contained in:
Brett Meyer 2013-09-24 22:30:55 -04:00
parent a5e00f3201
commit 55d941944d
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class DialectFactoryImpl implements DialectFactory {
@Override
public Dialect buildDialect(Map configValues, Connection connection) throws HibernateException {
final String dialectName = (String) configValues.get( AvailableSettings.DIALECT );
if ( StringHelper.isEmpty( dialectName ) ) {
if ( !StringHelper.isEmpty( dialectName ) ) {
return constructDialect( dialectName );
}
else {