Coding-Question
#7198
Replies: 3 comments 6 replies
-
this was changed back in 2.8.0, as part of #5878, to fix bugs with ExprParse. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I see - sorry that I ask but what exactly is this setIndex(event, "" + i + SEPARATOR + (j + 1), ((Object[]) value)[j]); for? |
Beta Was this translation helpful? Give feedback.
0 replies
-
i dont even get this case triggered. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I looked over the last changes and noticed, that in Variable.java the following has been changed:
setIndex(event, "" + i + SEPARATOR + j, ((Object[]) value)[j]);
->
setIndex(event, "" + i + SEPARATOR + (j + 1), ((Object[]) value)[j]);
Any ideas why this got changed?
Beta Was this translation helpful? Give feedback.
All reactions