mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 07:40:42 +07:00
java text blocks: split text block; ensure no trailing spaces introduced (IDEA-217012)
GitOrigin-RevId: 500fdf647c90dd8877e39cdbef4e88d0b24806eb
This commit is contained in:
committed by
intellij-monorepo-bot
parent
0ee7900e3a
commit
37116e8226
+7
@@ -0,0 +1,7 @@
|
||||
class MyTest {
|
||||
String text = """
|
||||
Lorem
|
||||
ipsum""" <caret>+ " " + """
|
||||
dolor sit amet
|
||||
""";
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class MyTest {
|
||||
String text = """
|
||||
Lorem
|
||||
ipsum<caret> dolor sit amet
|
||||
""";
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class MyTest {
|
||||
String text = """
|
||||
Lorem ipsum""" <caret>+ " " + """
|
||||
dolor sit amet
|
||||
""";
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class MyTest {
|
||||
String text = """
|
||||
Lorem ipsum <caret>dolor sit amet
|
||||
""";
|
||||
}
|
||||
Reference in New Issue
Block a user