lombok workaround: filter out non-static methods as soon as possible - methods even in interfaces must be explicitly static (IDEA-170385)

This commit is contained in:
Anna.Kozlova
2017-03-28 14:15:56 +02:00
parent 9d78b4965d
commit 40a4b22933
2 changed files with 9 additions and 2 deletions
@@ -24,8 +24,8 @@ public class StaticImportMethodWithCommonNameTest extends LightCodeInsightFixtur
protected void setUp() throws Exception {
super.setUp();
int idx = 0;
while (idx++ < 50) {
myFixture.addClass("package a; class Test" + idx + "{ public void format(String s, String s1) {}}");
while (idx++ < 450) {
myFixture.addClass("package a; class ATest" + idx + "{ public void format(String s, String s1) {}}");
}
}