CodeMirror: Fix Checkstyle warnings

Add new lines to clear checkstyle warnings about multiple code
lines on a single line.

Change-Id: I20175a4250eb24e4863c3d127959730a4b25f3f8
This commit is contained in:
David Pursehouse
2015-04-14 11:43:46 +09:00
parent eb5d930f0f
commit 9b389069d5

View File

@@ -112,9 +112,24 @@ public class CodeMirror extends JavaScriptObject {
}-*/;
public enum LineClassWhere {
TEXT { @Override String value() { return "text"; } },
BACKGROUND { @Override String value() { return "background"; } },
WRAP { @Override String value() { return "wrap"; } };
TEXT {
@Override
String value() {
return "text";
}
},
BACKGROUND {
@Override
String value() {
return "background";
}
},
WRAP {
@Override
String value() {
return "wrap";
}
};
abstract String value();
}