From 165b4e779918d3f8b1cf1789c1ece580a7e9eec3 Mon Sep 17 00:00:00 2001 From: James Holmes Date: Thu, 19 Jul 2007 14:20:13 +0000 Subject: [PATCH] WW-1854 XSLTResult excludingPattern Property is Missing This is a backport of the fix made on the trunk for 2.1. git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_0_X@557637 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/struts2/views/xslt/XSLTResult.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java b/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java index cf7c3a3b1..871129f3b 100644 --- a/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java +++ b/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java @@ -100,7 +100,7 @@ import com.opensymphony.xwork2.util.ValueStack; * </result> * *

- * Without it there would be an endless x/y/x/y/x/y/... elements. + * Without it there would be endless x/y/x/y/x/y/... elements. *

* *

@@ -231,7 +231,7 @@ public class XSLTResult implements Result { private String matchingPattern; /** Indicates the property name patterns which should be excluded from the xml. */ - private String exludingPattern; + private String excludingPattern; /** Indicates the ognl expression respresenting the bean which is to be exposed as xml. */ private String exposedValue; @@ -285,12 +285,12 @@ public class XSLTResult implements Result { this.matchingPattern = matchingPattern; } - public String getExludingPattern() { - return exludingPattern; + public String getExcludingPattern() { + return excludingPattern; } - public void setExludingPattern(String exludingPattern) { - this.exludingPattern = exludingPattern; + public void setExcludingPattern(String excludingPattern) { + this.excludingPattern = excludingPattern; } /**