Skip to content

Commit ce68a6d

Browse files
committed
JS: Remove unneeded qualifier in static field access
1 parent 734bfbd commit ce68a6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/extractor/src/com/semmle/js/extractor/TemplateEngines.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class TemplateEngines {
2222
public static final Pattern TEMPLATE_TAGS =
2323
Pattern.compile(
2424
StringUtil.glue(
25-
"|", TemplateEngines.MUSTACHE_TAG_DOUBLE, MUSTACHE_TAG_TRIPLE, MUSTACHE_TAG_PERCENT, EJS_TAG),
25+
"|", MUSTACHE_TAG_DOUBLE, MUSTACHE_TAG_TRIPLE, MUSTACHE_TAG_PERCENT, EJS_TAG),
2626
Pattern.DOTALL);
2727

2828
/**

0 commit comments

Comments
 (0)