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 -5
View File
@@ -1,9 +1,5 @@
enum class Color : Runnable {
WHITE,
BLACK,
RED,
YELLOW,
BLUE;
WHITE, BLACK, RED, YELLOW, BLUE;
override fun run() {
println("name()=" + name() + ", toString()=" + toString())