SortContentAction: fix javadoc movement while sorting enum constants

This commit is contained in:
Roman.Ivanov
2018-08-30 11:31:17 +07:00
parent 4020d3b5f8
commit 40ba62d4d8
3 changed files with 36 additions and 1 deletions
@@ -0,0 +1,17 @@
// "Sort content" "true"
public enum OSType {
/**
* one
*/
ONE,
/**
* three
*/
THREE,
/**
* two
*/
TWO
}
@@ -0,0 +1,16 @@
// "Sort content" "true"
public enum OSType {
/**
* one
*/
ONE,<caret>
/**
* two
*/
TWO,
/**
* three
*/
THREE
}