[jvm-lang] java: return if no method is found after reformat IDEA-188113

This commit is contained in:
Daniil Ovchinnikov
2018-03-12 21:34:56 +03:00
parent 3fcd22a5b5
commit 47bedfb488
6 changed files with 38 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
// "Create property 'appOutputPath' in 'X'" "true"
class X {
void initOutputChecker() {
getAppOutputPath();
}
protected RunContentDescriptor executeConfiguration() {
ApplicationManager.getApplication().invokeLater(() -> {
public void getAppOutputPath() {
return appOutputPath;
}

View File

@@ -0,0 +1,9 @@
// "Create property 'appOutputPath' in 'X'" "true"
class X {
void initOutputChecker() {
getAppOutpu<caret>tPath();
}
protected RunContentDescriptor executeConfiguration() {
ApplicationManager.getApplication().invokeLater(() -> {