HHH-11957 : Fix to work with jdk 1.6 source

This commit is contained in:
Gail Badner 2017-09-01 16:19:31 -07:00
parent 020c018914
commit 2287bdd5e0
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ import org.hibernate.type.StandardBasicTypes;
* @author Gail Badner * @author Gail Badner
*/ */
public class DB2SubstringFunction extends StandardSQLFunction { public class DB2SubstringFunction extends StandardSQLFunction {
private static final Set<String> possibleStringUnits = new HashSet<>( private static final Set<String> possibleStringUnits = new HashSet<String>(
Arrays.asList( "CODEUNITS16", "CODEUNITS32", "OCTETS" ) Arrays.asList( "CODEUNITS16", "CODEUNITS32", "OCTETS" )
); );