Added jdk9 pre-checking

This commit is contained in:
Willem 2017-06-10 18:04:24 +02:00
parent 41f311ed50
commit 58b0155c2b
2 changed files with 42 additions and 1 deletions

View file

@ -55,6 +55,6 @@ public class TPQConfigParameterValueScripterObjectOrList implements TPQConfigPar
String function = functionName+"("+queryParameter.getValueType()+",'"+value+"')";
// Wrap in value holder because these values will not change anymore.
return PREFIX_JS+TPQFactory.ParameterValueFunction.CREATE_VALUE_HOLDER+"("+function+");";
return PREFIX_JS+TPQFactory.ParameterValueFunction.CREATE_VALUE_HOLDER+"("+function+");"; // TODO: check if prefix should be removed.
}
}