Author: markt Date: Tue Feb 19 20:19:31 2013 New Revision: 1447898 URL: http://svn.apache.org/r1447898 Log: UCDetector: Remove unused methods
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=1447898&r1=1447897&r2=1447898&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:19:31 2013 @@ -1579,96 +1579,6 @@ public class Digester extends DefaultHan * Add a "factory create" rule for the specified parameters. * * @param pattern Element matching pattern - * @param className Java class name of the object creation factory class - * @param ignoreCreateExceptions when <code>true</code> any exceptions thrown during - * object creation will be ignored. - * @see FactoryCreateRule - */ - public void addFactoryCreate( - String pattern, - String className, - boolean ignoreCreateExceptions) { - - addRule( - pattern, - new FactoryCreateRule(className, ignoreCreateExceptions)); - - } - - - /** - * Add a "factory create" rule for the specified parameters. - * - * @param pattern Element matching pattern - * @param clazz Java class of the object creation factory class - * @param ignoreCreateExceptions when <code>true</code> any exceptions thrown during - * object creation will be ignored. - * @see FactoryCreateRule - */ - public void addFactoryCreate( - String pattern, - Class<?> clazz, - boolean ignoreCreateExceptions) { - - addRule( - pattern, - new FactoryCreateRule(clazz, ignoreCreateExceptions)); - - } - - - /** - * Add a "factory create" rule for the specified parameters. - * - * @param pattern Element matching pattern - * @param className Java class name of the object creation factory class - * @param attributeName Attribute name which, if present, overrides the - * value specified by <code>className</code> - * @param ignoreCreateExceptions when <code>true</code> any exceptions thrown during - * object creation will be ignored. - * @see FactoryCreateRule - */ - public void addFactoryCreate( - String pattern, - String className, - String attributeName, - boolean ignoreCreateExceptions) { - - addRule( - pattern, - new FactoryCreateRule(className, attributeName, ignoreCreateExceptions)); - - } - - - /** - * Add a "factory create" rule for the specified parameters. - * - * @param pattern Element matching pattern - * @param clazz Java class of the object creation factory class - * @param attributeName Attribute name which, if present, overrides the - * value specified by <code>className</code> - * @param ignoreCreateExceptions when <code>true</code> any exceptions thrown during - * object creation will be ignored. - * @see FactoryCreateRule - */ - public void addFactoryCreate( - String pattern, - Class<?> clazz, - String attributeName, - boolean ignoreCreateExceptions) { - - addRule( - pattern, - new FactoryCreateRule(clazz, attributeName, ignoreCreateExceptions)); - - } - - - /** - * Add a "factory create" rule for the specified parameters. - * - * @param pattern Element matching pattern * @param creationFactory Previously instantiated ObjectCreationFactory * to be utilized * @param ignoreCreateExceptions when <code>true</code> any exceptions thrown during --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org