Details
-
Type:
Improvement
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 2.5.1Release
-
Fix Version/s: 2.5.1Release
-
Component/s: Inferencing Engine
-
Labels:None
-
Number of attachments :
Description
Example:
package foo
class Foo {
public static void main(String[] args) {
println Foo.getName()
}
}
The method 'getName' will be underlined... but it calls the java.lang.Class.getName method so it shouldn't be underlined.
It should also appear in content assist after Foo.<CTRL-SPACE>.
Currently, in order to access the methods and properties on Class, you need explicitly add the reference to class, like this:
This is obviously wrong.