mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[java] add chop/join actions for record components: IDEA-264997
GitOrigin-RevId: 6c832eaeeac6f65678ae8a8ec760cc4d57ab6151
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e258d8e96c
commit
c97105f244
+6
@@ -0,0 +1,6 @@
|
||||
// "Put record components on separate lines" "true"
|
||||
|
||||
record R(
|
||||
int i,
|
||||
String s
|
||||
)
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
// "Put record components on separate lines" "true"
|
||||
|
||||
record R(int i, <caret>String s)
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Put record components on separate lines" "false"
|
||||
|
||||
record A(
|
||||
String s/**/,
|
||||
int i<caret>
|
||||
) {}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
// "Put record components on one line" "true"
|
||||
|
||||
record R(int i, String s)
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Put record components on one line" "true"
|
||||
|
||||
record R(
|
||||
int i,
|
||||
<caret>String s
|
||||
)
|
||||
Reference in New Issue
Block a user