Skip to content

Commit 474a5e2

Browse files
committed
реформат
1 parent 5ee76c0 commit 474a5e2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/com/ss/editor/ui/component/editor/impl/GLSLFileEditor.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,31 +89,31 @@ private static StyleSpans<Collection<String>> computeHighlighting(final String t
8989

9090
String styleClass = matcher.group("KEYWORD") != null ? "keyword" : null;
9191

92-
if(styleClass == null ) {
92+
if (styleClass == null) {
9393
styleClass = matcher.group("VALUETYPE") != null ? "value-type" : null;
9494
}
9595

96-
if(styleClass == null ) {
96+
if (styleClass == null) {
9797
styleClass = matcher.group("PAREN") != null ? "paren" : null;
9898
}
9999

100-
if(styleClass == null ) {
100+
if (styleClass == null) {
101101
styleClass = matcher.group("BRACE") != null ? "brace" : null;
102102
}
103103

104-
if(styleClass == null ) {
104+
if (styleClass == null) {
105105
styleClass = matcher.group("BRACKET") != null ? "bracket" : null;
106106
}
107107

108-
if(styleClass == null ) {
108+
if (styleClass == null) {
109109
styleClass = matcher.group("SEMICOLON") != null ? "semicolon" : null;
110110
}
111111

112-
if(styleClass == null ) {
112+
if (styleClass == null) {
113113
styleClass = matcher.group("STRING") != null ? "string" : null;
114114
}
115115

116-
if(styleClass == null ) {
116+
if (styleClass == null) {
117117
styleClass = matcher.group("COMMENT") != null ? "comment" : null;
118118
}
119119

0 commit comments

Comments
 (0)