Fix for tooltip text of unnecessary non-null assertion quickfix.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user