You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by rl...@apache.org on 2002/11/01 14:59:02 UTC

cvs commit: jakarta-struts/src/share/org/apache/struts/action ActionServlet.java

rleland     2002/11/01 05:59:02

  Modified:    src/share/org/apache/struts/action ActionServlet.java
  Log:
  Remove digester.setDebug() since it was deprecated
  --and-- the deprecated digester method was empty.
  
  Revision  Changes    Path
  1.125     +5 -7      jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java
  
  Index: ActionServlet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java,v
  retrieving revision 1.124
  retrieving revision 1.125
  diff -u -r1.124 -r1.125
  --- ActionServlet.java	28 Oct 2002 01:29:39 -0000	1.124
  +++ ActionServlet.java	1 Nov 2002 13:59:02 -0000	1.125
  @@ -1073,7 +1073,6 @@
   
           // Create a new Digester instance with standard capabilities
           configDigester = new Digester();
  -        configDigester.setDebug(detail);
           configDigester.setNamespaceAware(true);
           configDigester.setValidating(validating);
           configDigester.setUseContextClassLoader(true);
  @@ -1125,7 +1124,7 @@
        * be removed in a subsequent release.
        *
        * @deprecated Replaced by initApplicationDataSources() that takes
  -     *  an ApplicationConfig argument
  +     *  an ApplicationConfig argument. This method does nothing.
        */
       protected void initDataSources() throws javax.servlet.ServletException {
   
  @@ -1223,7 +1222,6 @@
           // Prepare a Digester to scan the web application deployment descriptor
           Digester digester = new Digester();
           digester.push(this);
  -        digester.setDebug(this.debug);
           digester.setNamespaceAware(true);
           digester.setValidating(false);
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>