HHH-5932 Fix filtering request with string literal starting with ':' (checkstyle fix)

(cherry picked from commit fd1ff34f03)
This commit is contained in:
Steve Ebersole 2016-01-11 17:32:28 -06:00
parent f9aab2ba88
commit c53a308a58
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public final class QueryParameters {
/** /**
* Symbols used to split SQL string into tokens in {@link #processFilters(String, Map, SessionFactoryImplementor)}. * Symbols used to split SQL string into tokens in {@link #processFilters(String, Map, SessionFactoryImplementor)}.
*/ */
private static final String SYMBOLS = ParserHelper.HQL_SEPARATORS.replace( "'", "" ); private static final String SYMBOLS = ParserHelper.HQL_SEPARATORS.replace( "'", "" );
private Type[] positionalParameterTypes; private Type[] positionalParameterTypes;
private Object[] positionalParameterValues; private Object[] positionalParameterValues;