Fix for tooltip text of unnecessary non-null assertion quickfix.

This commit is contained in:
Sergey Lukjanov
2012-06-20 12:40:44 +04:00
parent b0958ce321
commit a39615750d
2 changed files with 2 additions and 1 deletions
@@ -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
@@ -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