From ee17a84f729e2915f6f964deaabbe8a9dd3c8a4c Mon Sep 17 00:00:00 2001 From: Tagir Valeev Date: Fri, 6 Oct 2017 17:32:25 +0700 Subject: [PATCH] VariableTypeFix: cosmetic --- .../codeInsight/daemon/impl/quickfix/VariableTypeFix.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/java-impl/src/com/intellij/codeInsight/daemon/impl/quickfix/VariableTypeFix.java b/java/java-impl/src/com/intellij/codeInsight/daemon/impl/quickfix/VariableTypeFix.java index 78ce0c537aac..7f0ae4f465fa 100644 --- a/java/java-impl/src/com/intellij/codeInsight/daemon/impl/quickfix/VariableTypeFix.java +++ b/java/java-impl/src/com/intellij/codeInsight/daemon/impl/quickfix/VariableTypeFix.java @@ -98,7 +98,7 @@ public class VariableTypeFix extends LocalQuickFixAndIntentionActionOnPsiElement new WriteCommandAction.Simple(project, getText(), file) { @Override - protected void run() throws Throwable { + protected void run() { try { myVariable.normalizeDeclaration(); final PsiTypeElement typeElement = myVariable.getTypeElement();