From 881de132f7d6757e902ce55eb06c1c501c587439 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Wed, 20 Feb 2013 16:48:18 +0400 Subject: [PATCH] Restored quick fix (it had been removed accidentally when merging). --- idea/src/org/jetbrains/jet/plugin/quickfix/QuickFixes.java | 1 + 1 file changed, 1 insertion(+) diff --git a/idea/src/org/jetbrains/jet/plugin/quickfix/QuickFixes.java b/idea/src/org/jetbrains/jet/plugin/quickfix/QuickFixes.java index e646365173f..92674fccc89 100644 --- a/idea/src/org/jetbrains/jet/plugin/quickfix/QuickFixes.java +++ b/idea/src/org/jetbrains/jet/plugin/quickfix/QuickFixes.java @@ -158,6 +158,7 @@ public class QuickFixes { actions.put(UNSAFE_CALL, ExclExclCallFix.introduceExclExclCall()); actions.put(UNNECESSARY_NOT_NULL_ASSERTION, ExclExclCallFix.removeExclExclCall()); + factories.put(UNSAFE_INFIX_CALL, ReplaceInfixCallFix.createFactory()); JetIntentionActionFactory removeProtectedModifierFactory = RemoveModifierFix.createRemoveModifierFromListOwnerFactory(PROTECTED_KEYWORD); factories.put(PACKAGE_MEMBER_CANNOT_BE_PROTECTED, removeProtectedModifierFactory);