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 2017/03/13 17:46:24 UTC

[15/17] struts git commit: Drops static

Drops static


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

Branch: refs/heads/master
Commit: ce2261f6f590b4ab963ba815d40c02736171437a
Parents: 664895a
Author: Lukasz Lenart <lu...@apache.org>
Authored: Mon Mar 13 06:47:11 2017 +0100
Committer: Lukasz Lenart <lu...@apache.org>
Committed: Mon Mar 13 06:47:11 2017 +0100

----------------------------------------------------------------------
 .../opensymphony/xwork2/validator/DelegatingValidatorContext.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts/blob/ce2261f6/core/src/main/java/com/opensymphony/xwork2/validator/DelegatingValidatorContext.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/com/opensymphony/xwork2/validator/DelegatingValidatorContext.java b/core/src/main/java/com/opensymphony/xwork2/validator/DelegatingValidatorContext.java
index a9a8b04..79507bb 100644
--- a/core/src/main/java/com/opensymphony/xwork2/validator/DelegatingValidatorContext.java
+++ b/core/src/main/java/com/opensymphony/xwork2/validator/DelegatingValidatorContext.java
@@ -193,7 +193,7 @@ public class DelegatingValidatorContext implements ValidatorContext {
         return validationAware.hasFieldErrors();
     }
 
-    public static TextProvider makeTextProvider(Object object, TextProviderFactory textProviderFactory) {
+    public TextProvider makeTextProvider(Object object, TextProviderFactory textProviderFactory) {
         // the object argument passed through here will most probably be an ActionSupport descendant which does
         // implements TextProvider.
         if (object != null && object instanceof DelegatingValidatorContext) {