HHH-9975 checkstyle

This commit is contained in:
Brett Meyer 2015-08-26 17:17:15 -04:00
parent 5016f208ba
commit 31e32ec8cd
1 changed files with 2 additions and 1 deletions

View File

@ -202,7 +202,8 @@ public class CacheImpl implements CacheImplementor {
public boolean containsQuery(String regionName) {
if ( sessionFactory.getSessionFactoryOptions().isQueryCacheEnabled() ) {
return queryCaches.containsKey(regionName);
} else {
}
else {
return false;
}
}