HHH-1237 - Fix check style failure

This commit is contained in:
Andrea Boriero 2016-05-17 17:18:05 +01:00
parent 418c87f9cb
commit a1c134dd50
1 changed files with 2 additions and 1 deletions

View File

@ -163,7 +163,8 @@ public class ParameterParser {
// colon character has been escaped
recognizer.other( c );
indx++;
} else if ( c == ':' ) {
}
else if ( c == ':' ) {
// named parameter
final int right = StringHelper.firstIndexOfChar( sqlString, ParserHelper.HQL_SEPARATORS_BITSET, indx + 1 );
final int chopLocation = right < 0 ? sqlString.length() : right;