Remove ConvertTrimIndentToTrimMarginIntention

Relates to #KT-31502
This commit is contained in:
Dmitry Gridin
2019-05-27 17:30:54 +07:00
parent 91e9ed25f7
commit 0b9b49d7bc
14 changed files with 0 additions and 179 deletions
@@ -1 +0,0 @@
org.jetbrains.kotlin.idea.intentions.ConvertTrimIndentToTrimMarginIntention
@@ -1,9 +0,0 @@
// WITH_RUNTIME
fun test() {
val x =
"""
a
b
c
""".<caret>trimIndent()
}
@@ -1,9 +0,0 @@
// WITH_RUNTIME
fun test() {
val x =
"""
|a
| b
| c
""".trimMargin()
}
@@ -1,9 +0,0 @@
// IS_APPLICABLE: false
// WITH_RUNTIME
fun test() {
val x =
"""1
a
b
""".<caret>trimIndent()
}
@@ -1,9 +0,0 @@
// IS_APPLICABLE: false
// WITH_RUNTIME
fun test() {
val x =
"""
a
b
1""".<caret>trimIndent()
}
@@ -1,5 +0,0 @@
// IS_APPLICABLE: false
// WITH_RUNTIME
fun test() {
val x = " a".<caret>trimIndent()
}
@@ -1,10 +0,0 @@
// INTENTION_TEXT: "Convert to 'trimMargin'"
// WITH_RUNTIME
fun test() {
val x =
"""
a
b
""".<caret>trimIndent()
}
@@ -1,10 +0,0 @@
// INTENTION_TEXT: "Convert to 'trimMargin'"
// WITH_RUNTIME
fun test() {
val x =
"""
|a
|b
""".trimMargin()
}