SortContentAction: consider error element as separator between sortable entries (IDEA-214843)

GitOrigin-RevId: cda0be0ead288decd24b5dffe9ed00c327e7b14e
This commit is contained in:
Artemiy Sartakov
2019-05-29 13:07:50 +03:00
committed by intellij-monorepo-bot
parent 0218b6b743
commit f7bbc47fe8
3 changed files with 45 additions and 1 deletions
@@ -0,0 +1,16 @@
// "Sort content" "true"
enum Colors {
CLUBS,
DIAMOND,
HEARTS,
SPADES
public enum Direction {
UP, DOWN
}
//1
}
@@ -0,0 +1,15 @@
// "Sort content" "true"
enum Colors {
SPADES,
DIAMOND,
HEARTS,
CLU<caret>BS
public enum Direction {
UP,DOWN
}
//1
}