Code completion retrieves inner class's methods
Status: Beta
Brought to you by:
bernhardbrem
The class below will provide w() as a code completion candidate when you are coding within v() when it shouldn't since w() is a method of the inner class and not in the originating class.
class Outer{
public void v() {
}
class Inner {
public void w() {
}
}
}