Details
Description
Line 128 in TemporalExpressionWorker.java does incorrect comparison
if ("SUBSTITUTION".equals(childExpression.get("exprAssocType"))) {
should be
if ("SUBSTITUTE".equals(childExpression.get("exprAssocType"))) {
Also documentation of field exprAssocType in entity definition of TemporalExpressionAssoc needs to be fixed. INCLUDED & EXCLUDED should be INCLUDE & EXCLUDE respectively.