mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
SortContentAction: trying to save layout with multiple items on line
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
// "Sort content" "true"
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class Main {
|
||||
private void test() {
|
||||
new String[]{
|
||||
"aaa", "bbb",
|
||||
"ccc", "dd",
|
||||
"ff"
|
||||
};
|
||||
}
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
// "Sort content" "true"
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class Main {
|
||||
private void test() {
|
||||
new String[]{
|
||||
"aaa", // a
|
||||
"bbb",
|
||||
"ccc"/* c */, "dd", // d
|
||||
"ff"// f
|
||||
};
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -7,7 +7,7 @@ public class Main {
|
||||
new String[]{
|
||||
"aaa", // a
|
||||
"bbb", // b
|
||||
"ccc" /* c */
|
||||
"ccc"/* c */
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -7,6 +7,6 @@ public class Main {
|
||||
new String[]{
|
||||
"aaa", // a
|
||||
"bbb", // b
|
||||
"ccc" /* c */};
|
||||
"ccc"/* c */};
|
||||
}
|
||||
}
|
||||
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
// "Sort content" "true"
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class Main {
|
||||
private void test() {
|
||||
new String[] {
|
||||
"bbb", <caret>"aaa",
|
||||
"ccc", "dd",
|
||||
"ff"
|
||||
};
|
||||
}
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
// "Sort content" "true"
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class Main {
|
||||
private void test() {
|
||||
new String[] {
|
||||
"bbb", <caret>"aaa", // a
|
||||
"ccc"/* c */ , "dd", // d
|
||||
"ff" // f
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user