Consider this:
package test53
import groovy.transform.CompileStatic
@CompileStatic
class MyBean {
String foo
}
and this:
package test53
import groovy.transform.CompileStatic
@CompileStatic
class Test53 {
void doSomething() {
def b = new MyBean()
b.foo = 'foo'
}
}
Go to MyBean.foo and hit Ctrl+Shift+G (search for references). Greclipse finds b.foo in b.foo = 'foo' in Test53, but marks it as a potential match: why potential?
Consider this:
and this:
Go to
MyBean.fooand hit Ctrl+Shift+G (search for references). Greclipse findsb.fooinb.foo = 'foo'inTest53, but marks it as a potential match: why potential?