J2K: preserving line breaks between enum members from original code

This commit is contained in:
Valentin Kipyatkov
2015-06-16 12:41:53 +03:00
parent f9afb4f95b
commit fdff2c7153
11 changed files with 91 additions and 71 deletions
@@ -1,7 +1,3 @@
enum class Color private constructor(public val code: Int) {
WHITE(21),
BLACK(22),
RED(23),
YELLOW(24),
BLUE(25)
WHITE(21), BLACK(22), RED(23), YELLOW(24), BLUE(25)
}