mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
SortContentAction: fix another comment handling problem
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
// "Sort content" "true"
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class Main {
|
||||
private static void foo(String... vararg) {}
|
||||
|
||||
private void test() {
|
||||
foo(
|
||||
"aaa",
|
||||
"bbb",
|
||||
|
||||
"ccc"//comment
|
||||
);
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
// "Sort content" "true"
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class Main {
|
||||
private static void foo(String... vararg) {}
|
||||
|
||||
private void test() {
|
||||
foo(<caret>
|
||||
"bbb",
|
||||
"ccc"//comment
|
||||
,
|
||||
"aaa");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user