HHH-8404: Correctly render 'ListIndexExpression'

This commit is contained in:
Benjamin Tegarden 2013-08-02 12:41:53 +08:00 committed by Brett Meyer
parent fa4f0850c3
commit ddfa5ffe24
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class ListIndexExpression extends ExpressionImpl<Integer> implements Seri
public String render(RenderingContext renderingContext) {
return "index("
+ origin.getPathIdentifier() + '.' + getListAttribute().getName()
+ origin.getPathIdentifier()
+ ")";
}