diff --git a/idea/src/org/jetbrains/jet/plugin/JetBundle.properties b/idea/src/org/jetbrains/jet/plugin/JetBundle.properties index 885b858b7e7..c757cb4a736 100644 --- a/idea/src/org/jetbrains/jet/plugin/JetBundle.properties +++ b/idea/src/org/jetbrains/jet/plugin/JetBundle.properties @@ -25,6 +25,7 @@ replace.cast.with.static.assert=Replace a cast with a static assert replace.with.dot.call=Replace with dot call replace.with.safe.call=Replace with safe (?.) call replace.with.nna.call=Replace with non-null asserted (!!.) call +remove.unnecessary.non.null.assertion=Remove unnecessary non-null assertion (!!) change.to.backing.field=Change reference to backing field implement.members=Implement members new.kotlin.file.action=Kotlin File diff --git a/idea/src/org/jetbrains/jet/plugin/quickfix/UnnecessaryNotNullAssertionFix.java b/idea/src/org/jetbrains/jet/plugin/quickfix/UnnecessaryNotNullAssertionFix.java index ef49339aaa8..c512c589d3a 100644 --- a/idea/src/org/jetbrains/jet/plugin/quickfix/UnnecessaryNotNullAssertionFix.java +++ b/idea/src/org/jetbrains/jet/plugin/quickfix/UnnecessaryNotNullAssertionFix.java @@ -35,7 +35,7 @@ public class UnnecessaryNotNullAssertionFix implements IntentionAction { @NotNull @Override public String getText() { - return JetBundle.message("replace.with.dot.call"); + return JetBundle.message("remove.unnecessary.non.null.assertion"); } @NotNull