SPR-5673: fix for problems with expressions that use the same symbols as are used in the template prefix/suffix

This commit is contained in:
Andy Clement
2009-04-22 00:10:47 +00:00
parent dfa4b3e397
commit 4c42597cbc
4 changed files with 85 additions and 12 deletions

View File

@@ -95,5 +95,9 @@ public class CompositeStringExpression implements Expression {
public boolean isWritable(EvaluationContext context) {
return false;
}
public Expression[] getExpressions() {
return expressions;
}
}