Replaced "argument list" with "arguments" in quick fix text.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
// "Change type arguments to <*>" "true"
|
||||
public fun foo(a: Any) {
|
||||
a as List<*>
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Change type argument list to <*, *>" "true"
|
||||
// "Change type arguments to <*, *>" "true"
|
||||
public fun foo(a: Any?) {
|
||||
a as Map<*, *>?
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
// "Change type arguments to <*>" "true"
|
||||
public fun foo(a: Any) {
|
||||
a as List<Int><caret>
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Change type argument list to <*, *>" "true"
|
||||
// "Change type arguments to <*, *>" "true"
|
||||
public fun foo(a: Any?) {
|
||||
a as Map<*, Int>?<caret>
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
// "Change type argument list to <*, *>" "true"
|
||||
// "Change type arguments to <*, *>" "true"
|
||||
fun isStringToIntMap(map : Any) = map is Map<<caret>*, *>
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
// "Change type arguments to <*>" "true"
|
||||
fun isStringList(list : Any) = list is List<<caret>*>?
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
// "Change type arguments to <*>" "true"
|
||||
fun isStringList(list : Any?) = list is (List<<caret>*>)
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
// "Change type argument list to <*, *>" "true"
|
||||
// "Change type arguments to <*, *>" "true"
|
||||
fun isStringToIntMap(map : Any) = map is Map<<caret>String, Int>
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
// "Change type arguments to <*>" "true"
|
||||
fun isStringList(list : Any) = list is List<<caret>String>?
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
// "Change type arguments to <*>" "true"
|
||||
fun isStringList(list : Any?) = list is (List<<caret>String>)
|
||||
Reference in New Issue
Block a user