From 5d33f779be697ff297011c2326590b5656a6cce5 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Sat, 2 Mar 2013 21:16:17 +0400 Subject: [PATCH] Replaced "argument list" with "arguments" in quick fix text. --- idea/src/org/jetbrains/jet/plugin/JetBundle.properties | 2 +- .../addStarProjections/cast/afterChangeToStarProjection.kt | 2 +- .../cast/afterChangeToStarProjectionNullable.kt | 2 +- .../addStarProjections/cast/beforeChangeToStarProjection.kt | 2 +- .../cast/beforeChangeToStarProjectionNullable.kt | 2 +- .../checkType/afterChangeToStarProjectionMultipleParameters.kt | 2 +- .../checkType/afterChangeToStarProjectionNullable.kt | 2 +- .../checkType/afterChangeToStarProjectionSingleParameter.kt | 2 +- .../checkType/beforeChangeToStarProjectionMultipleParameters.kt | 2 +- .../checkType/beforeChangeToStarProjectionNullable.kt | 2 +- .../checkType/beforeChangeToStarProjectionSingleParameter.kt | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/idea/src/org/jetbrains/jet/plugin/JetBundle.properties b/idea/src/org/jetbrains/jet/plugin/JetBundle.properties index 54adda9acac..273f37b0a5d 100644 --- a/idea/src/org/jetbrains/jet/plugin/JetBundle.properties +++ b/idea/src/org/jetbrains/jet/plugin/JetBundle.properties @@ -15,7 +15,7 @@ add.modifier.family=Add Modifier make.class.annotation.class=Make ''{0}'' an annotation class make.class.annotation.class.family=Make Class an Annotation Class add.star.projections=Add ''{0}'' -change.to.star.projection=Change type argument list to {0} +change.to.star.projection=Change type arguments to {0} change.to.star.projection.family=Change to Star Projection make.element.not.modifier=Make {0} not {1} remove.modifier=Remove ''{0}'' modifier diff --git a/idea/testData/quickfix/addStarProjections/cast/afterChangeToStarProjection.kt b/idea/testData/quickfix/addStarProjections/cast/afterChangeToStarProjection.kt index 1e23a05370f..d98f10cf2fa 100644 --- a/idea/testData/quickfix/addStarProjections/cast/afterChangeToStarProjection.kt +++ b/idea/testData/quickfix/addStarProjections/cast/afterChangeToStarProjection.kt @@ -1,4 +1,4 @@ -// "Change type argument list to <*>" "true" +// "Change type arguments to <*>" "true" public fun foo(a: Any) { a as List<*> } diff --git a/idea/testData/quickfix/addStarProjections/cast/afterChangeToStarProjectionNullable.kt b/idea/testData/quickfix/addStarProjections/cast/afterChangeToStarProjectionNullable.kt index 26d4d46310f..7a5ce83fdb3 100644 --- a/idea/testData/quickfix/addStarProjections/cast/afterChangeToStarProjectionNullable.kt +++ b/idea/testData/quickfix/addStarProjections/cast/afterChangeToStarProjectionNullable.kt @@ -1,4 +1,4 @@ -// "Change type argument list to <*, *>" "true" +// "Change type arguments to <*, *>" "true" public fun foo(a: Any?) { a as Map<*, *>? } diff --git a/idea/testData/quickfix/addStarProjections/cast/beforeChangeToStarProjection.kt b/idea/testData/quickfix/addStarProjections/cast/beforeChangeToStarProjection.kt index 553e1847c67..dba3453e3e6 100644 --- a/idea/testData/quickfix/addStarProjections/cast/beforeChangeToStarProjection.kt +++ b/idea/testData/quickfix/addStarProjections/cast/beforeChangeToStarProjection.kt @@ -1,4 +1,4 @@ -// "Change type argument list to <*>" "true" +// "Change type arguments to <*>" "true" public fun foo(a: Any) { a as List } diff --git a/idea/testData/quickfix/addStarProjections/cast/beforeChangeToStarProjectionNullable.kt b/idea/testData/quickfix/addStarProjections/cast/beforeChangeToStarProjectionNullable.kt index f077df2456c..915ddab5cef 100644 --- a/idea/testData/quickfix/addStarProjections/cast/beforeChangeToStarProjectionNullable.kt +++ b/idea/testData/quickfix/addStarProjections/cast/beforeChangeToStarProjectionNullable.kt @@ -1,4 +1,4 @@ -// "Change type argument list to <*, *>" "true" +// "Change type arguments to <*, *>" "true" public fun foo(a: Any?) { a as Map<*, Int>? } diff --git a/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionMultipleParameters.kt b/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionMultipleParameters.kt index 2886b667da8..4474cedeb0a 100644 --- a/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionMultipleParameters.kt +++ b/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionMultipleParameters.kt @@ -1,2 +1,2 @@ -// "Change type argument list to <*, *>" "true" +// "Change type arguments to <*, *>" "true" fun isStringToIntMap(map : Any) = map is Map<*, *> \ No newline at end of file diff --git a/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionNullable.kt b/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionNullable.kt index 2fde707f30a..244109a7a31 100644 --- a/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionNullable.kt +++ b/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionNullable.kt @@ -1,2 +1,2 @@ -// "Change type argument list to <*>" "true" +// "Change type arguments to <*>" "true" fun isStringList(list : Any) = list is List<*>? \ No newline at end of file diff --git a/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionSingleParameter.kt b/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionSingleParameter.kt index dd9e7303574..32c03cded7d 100644 --- a/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionSingleParameter.kt +++ b/idea/testData/quickfix/addStarProjections/checkType/afterChangeToStarProjectionSingleParameter.kt @@ -1,2 +1,2 @@ -// "Change type argument list to <*>" "true" +// "Change type arguments to <*>" "true" fun isStringList(list : Any?) = list is (List<*>) \ No newline at end of file diff --git a/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionMultipleParameters.kt b/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionMultipleParameters.kt index fbe68541fe6..cc2154886d3 100644 --- a/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionMultipleParameters.kt +++ b/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionMultipleParameters.kt @@ -1,2 +1,2 @@ -// "Change type argument list to <*, *>" "true" +// "Change type arguments to <*, *>" "true" fun isStringToIntMap(map : Any) = map is Map<String, Int> \ No newline at end of file diff --git a/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionNullable.kt b/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionNullable.kt index 5854e690c44..733ee1ca0ad 100644 --- a/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionNullable.kt +++ b/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionNullable.kt @@ -1,2 +1,2 @@ -// "Change type argument list to <*>" "true" +// "Change type arguments to <*>" "true" fun isStringList(list : Any) = list is List<String>? \ No newline at end of file diff --git a/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionSingleParameter.kt b/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionSingleParameter.kt index 2f807b2736b..a980ff8a3b2 100644 --- a/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionSingleParameter.kt +++ b/idea/testData/quickfix/addStarProjections/checkType/beforeChangeToStarProjectionSingleParameter.kt @@ -1,2 +1,2 @@ -// "Change type argument list to <*>" "true" +// "Change type arguments to <*>" "true" fun isStringList(list : Any?) = list is (List<String>) \ No newline at end of file