Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: string commands were erroring (#426)
So the list that is being filtered is immutable, hence doesn't work with in conjunction with removeIf. There are two solutions, either - stream it (which I've done in this PR) OR - create a new ArrayList each time for filtering since that is mutable
- Loading branch information