You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue #89 when a set is created an no preferredCollectionClass is passed, the handler will look at the collection element type. If the type is Comparable, it will return a TreeSet. If not, it will return a HashSet.
When the SetCollectionHandler creates a new Set, it chooses TreeSet by default. Note that this requires any element within to implement Comparable.
Two options for fixing this:
The text was updated successfully, but these errors were encountered: