SortContentAction: preserve comments in corner case

This commit is contained in:
Roman.Ivanov
2018-04-25 16:41:41 +07:00
parent 48499b6e4b
commit c0ba114576
4 changed files with 24 additions and 0 deletions
@@ -9,5 +9,6 @@ public enum OSType {
WIN//after win
// win
;
}
@@ -0,0 +1,9 @@
// "Sort content" "true"
public enum Enum {
A,
B,
C// foo
;
}
@@ -0,0 +1,8 @@
// "Sort content" "true"
public enum Enum {
C // foo
,<caret>
A,
B;
}