#2200 : Code completion Problem with private variables inside anonymous inner classes
e.g.
public class Foo
{
private String _text;
public void bar()
{
Runnable r = new Runnable() {
public void run()
{
_t|
}
}
}
}
ctrl+space at | gives 'No suggestions'.
Anyone else seeing this?
N.
Please sign in to leave a comment.