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:[EMAIL PROTECTED]">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: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]