Fixed case for intention actions texts.

This commit is contained in:
Evgeny Gerashchenko
2012-10-23 18:59:47 +04:00
parent 1ad2fdac0b
commit 4e05bee22a
20 changed files with 24 additions and 31 deletions
@@ -1,2 +1,2 @@
// "Specify Type Explicitly" "false"
// "Specify type explicitly" "false"
val x = "<caret>"
@@ -1,4 +1,4 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
fun getEntry() : Map.Entry<jet.Array<String>, java.sql.Array> {
}
@@ -1,2 +1,2 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
val x: (Int) -> String = { (a: Int) -> ""}
@@ -1,4 +1,4 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
import java.util.HashMap
fun foo(map : HashMap<String, Int>) {
@@ -1,3 +1,3 @@
// "Remove Explicitly Specified Type" "true"
// "Remove explicitly specified type" "true"
val x = null
@@ -1,4 +1,4 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
class String {}
val x: jet.String = ""
@@ -1,2 +1,2 @@
// "Remove Explicitly Specified Type" "true"
// "Remove explicitly specified type" "true"
val x = ""
@@ -1,2 +1,2 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
val x: Unit = Unit.VALUE
@@ -1,2 +1,2 @@
// "Specify Type Explicitly" "false"
// "Specify type explicitly" "false"
val <caret>x = BadType()
@@ -1,2 +1,2 @@
// "Specify Type Explicitly" "false"
// "Specify type explicitly" "false"
val x = "<caret>"
@@ -1,4 +1,4 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
fun getEntry() : Map.Entry<jet.Array<String>, java.sql.Array> {
}
@@ -1,2 +1,2 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
val x<caret> = { (a: Int) -> ""}
@@ -1,4 +1,4 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
import java.util.HashMap
fun foo(map : HashMap<String, Int>) {
@@ -1,3 +1,3 @@
// "Remove Explicitly Specified Type" "true"
// "Remove explicitly specified type" "true"
val x : Map.Entry<Stri<caret>ng, Int>? = null
@@ -1,4 +1,4 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
class String {}
val <caret>x = ""
@@ -1,2 +1,2 @@
// "Remove Explicitly Specified Type" "true"
// "Remove explicitly specified type" "true"
val x<caret> : String = ""
@@ -1,2 +1,2 @@
// "Specify Type Explicitly" "true"
// "Specify type explicitly" "true"
val x <caret>= Unit.VALUE
@@ -1,2 +1,2 @@
// "Specify Type Explicitly" "false"
// "Specify type explicitly" "false"
val <caret>x = BadType()