bloritsch 01/02/08 10:30:52
Modified: src/org/apache/cocoon Tag: xml-cocoon2 Cocoon.java
Log:
Accidentally committed code I was testing.
Revision Changes Path
No revision
No revision
1.4.2.47 +4 -3 xml-cocoon/src/org/apache/cocoon/Cocoon.java
Index: Cocoon.java
===================================================================
RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/Cocoon.java,v
retrieving revision 1.4.2.46
retrieving revision 1.4.2.47
diff -u -r1.4.2.46 -r1.4.2.47
--- Cocoon.java 2001/02/08 14:57:34 1.4.2.46
+++ Cocoon.java 2001/02/08 18:30:39 1.4.2.47
@@ -47,7 +47,7 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Pierpaolo Fumagalli</a>
* (Apache Software Foundation, Exoffice Technologies)
* @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a>
- * @version CVS $Revision: 1.4.2.46 $ $Date: 2001/02/08 14:57:34 $
+ * @version CVS $Revision: 1.4.2.47 $ $Date: 2001/02/08 18:30:39 $
*/
public class Cocoon
implements Component, Configurable, ComponentManager, Modifiable,
Processor, Constants, Loggable {
@@ -88,7 +88,8 @@
* Create a new <code>Cocoon</code> instance.
*/
protected Cocoon() throws ConfigurationException {
- // Set the system properties needed by Xalan2. setSystemProperties();
+ // Set the system properties needed by Xalan2.
+ setSystemProperties();
}
/**
@@ -248,6 +249,7 @@
/**
* Sets required system properties .
+ */
protected void setSystemProperties()
{
java.util.Properties props = new java.util.Properties();
@@ -267,5 +269,4 @@
}
System.setProperties(systemProps);
}
- */
}