We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We see a false positive report of This class became abstract on an enum.
This class became abstract
Previously the enum was a simple enum of the form
enum Thing { First, Second }
It subsequently gained an abstract method:
enum Thing { First() { void doThing(){..} }, Second(){ void doThing(){..} } abstract void doThing(){} }
We now get a false positive report the Thing is abstract despite the fact that by definition enums are concrete final classes.
final
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We see a false positive report of
This class became abstract
on an enum.Previously the enum was a simple enum of the form
It subsequently gained an abstract method:
We now get a false positive report the Thing is abstract despite the fact that by definition enums are concrete
final
classes.The text was updated successfully, but these errors were encountered: