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
Noticed especially within a script -- groovy.lang.Script extends groovy.lang.GroovyObjectSupport -- there are duplicate content assist proposals for methods like getMetaClass. DefaultGroovyMethods and GroovyObjectSupport are both offering a method.
In cases such as this (especially for 0 parameter methods), category method proposals should be suppressed. I think DefaultGroovyMethods.getMetaClass is there for non-Groovy types that did not get GroovyObject interface at compile time.
The text was updated successfully, but these errors were encountered:
Noticed especially within a script -- groovy.lang.Script extends groovy.lang.GroovyObjectSupport -- there are duplicate content assist proposals for methods like
getMetaClass
.DefaultGroovyMethods
andGroovyObjectSupport
are both offering a method.In cases such as this (especially for 0 parameter methods), category method proposals should be suppressed. I think DefaultGroovyMethods.getMetaClass is there for non-Groovy types that did not get GroovyObject interface at compile time.
The text was updated successfully, but these errors were encountered: