don't autopopup annoying name suggestions for fields

This commit is contained in:
peter
2011-04-20 19:04:51 +02:00
parent 6db0dbcebb
commit 325555e9da
3 changed files with 28 additions and 9 deletions

View File

@@ -723,5 +723,16 @@ class Foo {
assert !lookup
}
public void testMethodNameRestart() {
myFixture.configureByText "a.java", '''
public class Bar {
private static List<java.io.File> getS<caret>
}
'''
type 'ta'
assert !lookup
}
}