HHH-8503 whoops

This commit is contained in:
Brett Meyer 2013-09-24 22:31:36 -04:00
parent 61e3940057
commit 8b406db4a9
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,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 {