Author: simonetripodi
Date: Wed May 11 07:12:49 2011
New Revision: 1101767
URL: http://svn.apache.org/viewvc?rev=1101767&view=rev
Log:
removed deprecated debugging level getter/setter
Modified:
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java
Modified:
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java?rev=1101767&r1=1101766&r2=1101767&view=diff
==============================================================================
---
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java
(original)
+++
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java
Wed May 11 07:12:49 2011
@@ -171,7 +171,7 @@ public class Digester extends DefaultHan
* used to load Digester itself, is used, based on the value of the
* <code>useContextClassLoader</code> variable.
*/
- protected ClassLoader classLoader = null;
+ private ClassLoader classLoader = null;
/**
@@ -446,39 +446,6 @@ public class Digester extends DefaultHan
/**
- * Return the debugging detail level of our currently enabled logger.
- *
- * @deprecated This method now always returns 0. Digester uses the apache
- * jakarta commons-logging library; see the documentation for that library
- * for more information.
- */
- @Deprecated
- public int getDebug() {
-
- return (0);
-
- }
-
-
- /**
- * Set the debugging detail level of our currently enabled logger.
- *
- * @param debug New debugging detail level (0=off, increasing integers
- * for more detail)
- *
- * @deprecated This method now has no effect at all. Digester uses
- * the apache jakarta comons-logging library; see the documentation
- * for that library for more information.
- */
- @Deprecated
- public void setDebug(int debug) {
-
- // No action is taken
-
- }
-
-
- /**
* Return the error handler for this Digester.
*/
public ErrorHandler getErrorHandler() {