Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/groovy/GroovyPartitionScanner.java')
-rw-r--r--bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/groovy/GroovyPartitionScanner.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/groovy/GroovyPartitionScanner.java b/bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/groovy/GroovyPartitionScanner.java
index 0d9842042..0853f2327 100644
--- a/bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/groovy/GroovyPartitionScanner.java
+++ b/bundles/code/org.eclipse.fx.code.editor.ldef.langs.fx/src/org/eclipse/fx/code/editor/ldef/langs/fx/groovy/GroovyPartitionScanner.java
@@ -19,13 +19,13 @@ public class GroovyPartitionScanner extends org.eclipse.jface.text.rules.RuleBas
"\""
, "\""
, new org.eclipse.jface.text.rules.Token("__groovy_string")
- , '\\'
+ , (char)0
, false);
pr[3] = new org.eclipse.jface.text.rules.SingleLineRule(
"'"
, "'"
, new org.eclipse.jface.text.rules.Token("__groovy_character")
- , '\\'
+ , (char)0
, false);
setPredicateRules(pr);
}

Back to the top