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
The -overrideCollectionClass argument for the -Ximmutable plugin assumes that the chosen class can be constructed directly using new OverrideCollectionClassName(args), but this is not the case for Guava's ImmutableList, which must be built using a builder or a static method, such as copyOf(Iterable).
There should be some way of specifying how the collection class should be created.
The text was updated successfully, but these errors were encountered:
The
-overrideCollectionClass
argument for the-Ximmutable
plugin assumes that the chosen class can be constructed directly usingnew OverrideCollectionClassName(args)
, but this is not the case for Guava'sImmutableList
, which must be built using a builder or a static method, such ascopyOf(Iterable)
.There should be some way of specifying how the collection class should be created.
The text was updated successfully, but these errors were encountered: