You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by fr...@apache.org on 2001/12/13 01:56:33 UTC

cvs commit: xml-cocoon2/scratchpad/src/org/apache/cocoon/treeprocessor TreeBuilderComponentManager.java

froehlich    01/12/12 16:56:33

  Modified:    scratchpad/src/org/apache/cocoon/treeprocessor
                        TreeBuilderComponentManager.java
  Log:
  The signature of the parent class (ExcaliburComponentManager) has
  changed. Therefor the build was broken.
  
  Revision  Changes    Path
  1.4       +7 -3      xml-cocoon2/scratchpad/src/org/apache/cocoon/treeprocessor/TreeBuilderComponentManager.java
  
  Index: TreeBuilderComponentManager.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/scratchpad/src/org/apache/cocoon/treeprocessor/TreeBuilderComponentManager.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TreeBuilderComponentManager.java	2001/11/25 21:37:55	1.3
  +++ TreeBuilderComponentManager.java	2001/12/13 00:56:32	1.4
  @@ -23,7 +23,7 @@
    * enriched through <code>Builder.addComponent()</code>.
    *
    * @author <a href="mailto:sylvain@apache.org">Sylvain Wallez</a>
  - * @version CVS $Revision: 1.3 $ $Date: 2001/11/25 21:37:55 $
  + * @version CVS $Revision: 1.4 $ $Date: 2001/12/13 00:56:32 $
    */
   
   
  @@ -86,8 +86,12 @@
        * manager components are visible).
        */
       public void makeVisible() {
  -        super.initialize();
  -        visible = true;
  +        try {
  +            super.initialize();
  +            visible = true;
  +        } catch (Exception e) {
  +            this.getLogger().error("makeVisible(): Exception",e);
  +        }
       }
   
   }
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org