Author: markt Date: Tue Feb 19 20:13:10 2013 New Revision: 1447895 URL: http://svn.apache.org/r1447895 Log: Remove unused constructors and default constructor that adds nothing
Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java?rev=1447895&r1=1447894&r2=1447895&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java Tue Feb 19 20:13:10 2013 @@ -111,51 +111,6 @@ public class Digester extends DefaultHan } - // --------------------------------------------------------- Constructors - - - /** - * Construct a new Digester with default properties. - */ - public Digester() { - - super(); - - } - - - /** - * Construct a new Digester, allowing a SAXParser to be passed in. This - * allows Digester to be used in environments which are unfriendly to - * JAXP1.1 (such as WebLogic 6.0). Thanks for the request to change go to - * James House (ja...@interobjective.com). This may help in places where - * you are able to load JAXP 1.1 classes yourself. - */ - public Digester(SAXParser parser) { - - super(); - - this.parser = parser; - - } - - - /** - * Construct a new Digester, allowing an XMLReader to be passed in. This - * allows Digester to be used in environments which are unfriendly to - * JAXP1.1 (such as WebLogic 6.0). Note that if you use this option you - * have to configure namespace and validation support yourself, as these - * properties only affect the SAXParser and empty constructor. - */ - public Digester(XMLReader reader) { - - super(); - - this.reader = reader; - - } - - // --------------------------------------------------- Instance Variables --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org