Merge branch '5.1.x'

This commit is contained in:
Juergen Hoeller
2019-02-15 17:16:28 +01:00
10 changed files with 127 additions and 123 deletions

View File

@@ -125,8 +125,8 @@ public class CompoundExpression extends SpelNodeImpl {
@Override
public void generateCode(MethodVisitor mv, CodeFlow cf) {
for (int i = 0; i < this.children.length;i++) {
this.children[i].generateCode(mv, cf);
for (SpelNodeImpl child : this.children) {
child.generateCode(mv, cf);
}
cf.pushDescriptor(this.exitTypeDescriptor);
}