JS: Remove unneeded qualifier in static field access

This commit is contained in:
Asger Feldthaus
2021-12-07 12:44:24 +01:00
parent 734bfbd7ae
commit ce68a6d1c5

View File

@@ -22,7 +22,7 @@ public class TemplateEngines {
public static final Pattern TEMPLATE_TAGS = public static final Pattern TEMPLATE_TAGS =
Pattern.compile( Pattern.compile(
StringUtil.glue( StringUtil.glue(
"|", TemplateEngines.MUSTACHE_TAG_DOUBLE, MUSTACHE_TAG_TRIPLE, MUSTACHE_TAG_PERCENT, EJS_TAG), "|", MUSTACHE_TAG_DOUBLE, MUSTACHE_TAG_TRIPLE, MUSTACHE_TAG_PERCENT, EJS_TAG),
Pattern.DOTALL); Pattern.DOTALL);
/** /**