-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Description
We see a false positive report of This class became abstract on an enum.
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.
Metadata
Metadata
Assignees
Labels
No labels