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 ImmutableEnumChecker warning declares the same name as the Immutable error.
Given a code that has -XepDisableAllChecks -XepDisableAllWarnings -Xep:Immutable:ERROR, trying to enable the former Immutable error for checking the @Immutable annotated types, it mistakenly activates the ImmutableEnumChecker at an ERROR level leading to unwanted failures.
The text was updated successfully, but these errors were encountered:
Hi,
there is most likely some mistake in how these two checks are configured leading to false activation of unintended checks:
Immutable
@Immutable
is not immutableImmutableEnumChecker
The
ImmutableEnumChecker
warning declares the same name as theImmutable
error.Given a code that has
-XepDisableAllChecks -XepDisableAllWarnings -Xep:Immutable:ERROR
, trying to enable the formerImmutable
error for checking the@Immutable
annotated types, it mistakenly activates theImmutableEnumChecker
at an ERROR level leading to unwanted failures.The text was updated successfully, but these errors were encountered: