Minor. Reformatted.

This commit is contained in:
Evgeny Gerashchenko
2013-07-19 22:30:34 +04:00
parent a024a17b03
commit d9bb3b8fb7
@@ -124,7 +124,9 @@ public class KotlinInlineLocalHandler extends InlineActionHandler {
} }
final List<JetExpression> inlinedExpressions = Lists.newArrayList(); final List<JetExpression> inlinedExpressions = Lists.newArrayList();
CommandProcessor.getInstance().executeCommand(project, new Runnable() { CommandProcessor.getInstance().executeCommand(
project,
new Runnable() {
@Override @Override
public void run() { public void run() {
ApplicationManager.getApplication().runWriteAction(new Runnable() { ApplicationManager.getApplication().runWriteAction(new Runnable() {
@@ -155,7 +157,9 @@ public class KotlinInlineLocalHandler extends InlineActionHandler {
} }
}); });
} }
}, RefactoringBundle.message("inline.command", name), null); },
RefactoringBundle.message("inline.command", name),
null);
} }
private static boolean showDialog(Project project, String name, Collection<PsiReference> references) { private static boolean showDialog(Project project, String name, Collection<PsiReference> references) {