SortContentAction: place \n correctly if comment inside node IDEA-189822

This commit is contained in:
Roman.Ivanov
2018-04-10 15:13:08 +07:00
parent 70e7f33c32
commit db891c3f24
3 changed files with 32 additions and 0 deletions
@@ -0,0 +1,13 @@
// "Sort content" "true"
public enum OSType {
LINUX// linux
,
MAC//mac
,
WIN//after win
// win
;
}
@@ -0,0 +1,9 @@
// "Sort content" "true"
public enum OSType {
WIN// win
//after win
, LIN<caret>UX // linux
,MAC //mac
;
}