From 74085f630eebfe27fa5bcb263c7bf5d4e17921d9 Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Tue, 20 Sep 2011 16:30:13 +0000 Subject: [PATCH] Removed redundant escape sequence git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1173228 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/struts2/sitegraph/entities/FileBasedView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java b/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java index 29c1f941c..91b44b78a 100644 --- a/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java +++ b/plugins/sitegraph/src/main/java/org/apache/struts2/sitegraph/entities/FileBasedView.java @@ -68,7 +68,7 @@ public abstract class FileBasedView implements View { // FIXME: work with new configuration style //Object ext = Settings.get(StrutsConstants.STRUTS_ACTION_EXTENSION); String ext = "action"; - String actionRegex = "([A-Za-z0-9\\._\\-\\!]+\\." + ext + ")"; + String actionRegex = "([A-Za-z0-9\\._\\-!]+\\." + ext + ")"; return Pattern.compile(actionRegex); }