Files
openide/java/java-tests/testData/codeInsight/completion/methodChains/testPreferGetterToMethodChain/TestIndex.java

28 lines
502 B
Java

class EditorFactory {
static EditorFactory getInstance() {
return null;
}
Editor getEditor() {
return null;
}
}
class Editor {
}
class Main {
void stats() {
EditorFactory.getInstance().getEditor();
EditorFactory.getInstance().getEditor();
EditorFactory.getInstance().getEditor();
EditorFactory.getInstance().getEditor();
EditorFactory.getInstance().getEditor();
EditorFactory.getInstance().getEditor();
EditorFactory.getInstance().getEditor();
}
}