mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
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:
+2
-2
@@ -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) {}}");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user