HHH-11277 - Fix checkstyle error.

This commit is contained in:
Chris Cranford 2016-11-28 11:48:15 -05:00
parent 46727d5af3
commit e75e2d78bd
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ public class TopLimitHandler extends AbstractLimitHandler {
if ( supportsVariableLimit ) {
sb.insert( insertionPoint, " TOP ? " );
} else {
}
else {
sb.insert( insertionPoint, " TOP " + getMaxOrLimit( selection ) + " " );
}