fix(efservices): Update hasScopes to not mutate underlying collection
-
chore: Update to 1.4.8 to release hotfix for concurrent mod. errors
-
fix(efservices): Update hasScopes to not mutate underlying collection
When the auth token moved to the cache layer, the usage of Collections.sort cause modifications to the underlying structures. This would cause ConcurrentModificationException to throw if another instance of the same token was being mutated at the same time.
As the collections don't need to be sorted to compare contents, the sorts were removed.