SortContentAction: fix another comment handling problem

This commit is contained in:
Roman.Ivanov
2018-07-11 19:08:01 +07:00
parent 81d03dcac2
commit 7b618f5a58
3 changed files with 37 additions and 0 deletions
@@ -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
);
}
}
@@ -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");
}
}