diff --git a/idea/src/org/jetbrains/jet/plugin/refactoring/introduceVariable/JetInplaceVariableIntroducer.java b/idea/src/org/jetbrains/jet/plugin/refactoring/introduceVariable/JetInplaceVariableIntroducer.java index 545aa19c25d..3ed528cfc06 100644 --- a/idea/src/org/jetbrains/jet/plugin/refactoring/introduceVariable/JetInplaceVariableIntroducer.java +++ b/idea/src/org/jetbrains/jet/plugin/refactoring/introduceVariable/JetInplaceVariableIntroducer.java @@ -43,10 +43,10 @@ import java.awt.event.ActionListener; */ public class JetInplaceVariableIntroducer extends InplaceVariableIntroducer { - private boolean myReplaceOccurrence; - private JetProperty myProperty; - private boolean isVar; - private boolean myDoNotChangeVar; + private final boolean myReplaceOccurrence; + private final JetProperty myProperty; + private final boolean isVar; + private final boolean myDoNotChangeVar; @Nullable private final JetType myExprType; private JCheckBox myVarCheckbox; private JCheckBox myExprTypeCheckbox; @@ -64,6 +64,7 @@ public class JetInplaceVariableIntroducer extends InplaceVariableIntroducer