Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* fixes #2136 NPE in NullPointerException in ExpressionOperator.printCollection since 2.7.11 The bug is described in detail in #2136 We are looping over an array which is located in the instance field which can be set to `null` while lopping which is causing NPE. To fix it we are caching the value of `argumentIndices` by looping over an iterator of the array.
- Loading branch information