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 72fff5ced..1c696cf8d 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 @@ -177,12 +177,6 @@ import com.opensymphony.xwork2.util.logging.LoggerFactory; *
  • parse - true by default. If set to false, the location param will * not be parsed for Ognl expressions.
  • * - *
  • matchingPattern - Pattern that matches only desired elements, by - * default it matches everything.
  • - * - *
  • excludingPattern - Pattern that eliminates unwanted elements, by - * default it matches none.
  • - * * * *

    @@ -279,22 +273,6 @@ public class XSLTResult implements Result { this.exposedValue = exposedValue; } - public String getMatchingPattern() { - return matchingPattern; - } - - public void setMatchingPattern(String matchingPattern) { - this.matchingPattern = matchingPattern; - } - - public String getExcludingPattern() { - return excludingPattern; - } - - public void setExcludingPattern(String excludingPattern) { - this.excludingPattern = excludingPattern; - } - /** * If true, parse the stylesheet location for OGNL expressions. *