Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Don't use .subList like it's a List (appsmithorg#32238)
Instead or getting the sub-list and returning that, which would be an instance of `ArrayList$SubList`, we instead remove the extra items in the original `ArrayList` and return that itself. This is because the `SubList` objects are just _views_ on the underlying `ArrayList` object, and cannot be serialized by Hibernate directly.
- Loading branch information