IDE: Remove duplicate quickfix message in resources.

This commit is contained in:
Mark Punzalan
2021-05-21 21:32:17 +00:00
committed by teamcityserver
parent e5f6e4e1e8
commit 06adb405e1
2 changed files with 1 additions and 2 deletions
@@ -1150,7 +1150,6 @@ replace.with.safe.this.call=Replace with safe (this?.) call
replace.with.safe.call=Replace with safe (?.) call
replace.scope.function.with.safe.call=Replace scope function with safe (?.) call
replace.with.dot.call=Replace with dot call
replace.with.safe.call1=Replace with safe (?.) call
replace.invalid.positioned.arguments.for.annotation=Replace invalid positioned arguments for annotation
replace.jvmfield.with.const=Replace '@JvmField' with 'const'
replace.modifier=Replace modifier
@@ -26,7 +26,7 @@ class ReplaceInfixOrOperatorCallFix(
private val notNullNeeded: Boolean
) : KotlinQuickFixAction<KtExpression>(element) {
override fun getText() = KotlinBundle.message("replace.with.safe.call1")
override fun getText() = KotlinBundle.message("replace.with.safe.call")
override fun getFamilyName() = text