SortContentAction: preserve comments in enums before first element

This commit is contained in:
Roman.Ivanov
2018-06-22 15:45:12 +07:00
parent ee875abcbd
commit d52470d415
3 changed files with 42 additions and 9 deletions
@@ -0,0 +1,6 @@
// "Sort content" "true"
public enum OSType {//foo
LINUX, MAC, WIN;
}
@@ -0,0 +1,6 @@
// "Sort content" "true"
public enum OSType {//foo
WIN, LINUX, MAC<caret>;
}