HHH-9975 checkstyle

This commit is contained in:
Brett Meyer 2015-08-26 17:17:15 -04:00
parent eaf4c789b3
commit 6ca0a231a5
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;
}
}