Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
as the subject said:
public boolean isGroovy() {
return getClassUnderInspection().isAssignableFrom(GroovyObject.class);
}
and should be
public boolean isGroovy() {
return GroovyObject.class.isAssignableFrom(getClassUnderInspection());
}