File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
src/com/ss/editor/ui/component/editor/impl Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments