You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2016/05/05 08:38:17 UTC

[2/5] struts git commit: Turns SMI on by default

Turns SMI on by default


Project: http://git-wip-us.apache.org/repos/asf/struts/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/6da61ffd
Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/6da61ffd
Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/6da61ffd

Branch: refs/heads/master
Commit: 6da61ffdd7577ebaa43ced8189cc971519950b0b
Parents: 4ad0854
Author: Lukasz Lenart <lu...@apache.org>
Authored: Thu May 5 10:37:22 2016 +0200
Committer: Lukasz Lenart <lu...@apache.org>
Committed: Thu May 5 10:37:22 2016 +0200

----------------------------------------------------------------------
 .../java/com/opensymphony/xwork2/config/entities/ActionConfig.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts/blob/6da61ffd/core/src/main/java/com/opensymphony/xwork2/config/entities/ActionConfig.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/com/opensymphony/xwork2/config/entities/ActionConfig.java b/core/src/main/java/com/opensymphony/xwork2/config/entities/ActionConfig.java
index 1958f53..1b83738 100644
--- a/core/src/main/java/com/opensymphony/xwork2/config/entities/ActionConfig.java
+++ b/core/src/main/java/com/opensymphony/xwork2/config/entities/ActionConfig.java
@@ -53,7 +53,7 @@ public class ActionConfig extends Located implements Serializable {
     protected String methodName;
     protected String packageName;
     protected String name;
-    protected boolean strictMethodInvocation;
+    protected boolean strictMethodInvocation = true;
     protected AllowedMethods allowedMethods;
 
     protected ActionConfig(String packageName, String name, String className) {