Removing the unused matchingPatterns and excludingPatterns parameters

WW-1550


git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@649880 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald J. Brown
2008-04-20 03:52:37 +00:00
parent 21f3bcbbed
commit 6078c43b68
@@ -177,12 +177,6 @@ import com.opensymphony.xwork2.util.logging.LoggerFactory;
* <li><b>parse</b> - true by default. If set to false, the location param will
* not be parsed for Ognl expressions.</li>
*
* <li><b>matchingPattern</b> - Pattern that matches only desired elements, by
* default it matches everything.</li>
*
* <li><b>excludingPattern</b> - Pattern that eliminates unwanted elements, by
* default it matches none.</li>
*
* </ul>
*
* <p>
@@ -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.
*