pietsch 2003/01/02 12:59:08
Modified: src/org/apache/fop/apps FOPException.java
Log:
Fixed printing Execption delimiters to wrong stream.
Revision Changes Path
1.10 +3 -3 xml-fop/src/org/apache/fop/apps/FOPException.java
Index: FOPException.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/FOPException.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- FOPException.java 30 Jul 2001 20:29:18 -0000 1.9
+++ FOPException.java 2 Jan 2003 20:59:07 -0000 1.10
@@ -85,7 +85,7 @@
_exception.printStackTrace(stream);
}
if (getRootException() != null) {
- System.err.println(EXCEPTION_SEPARATOR);
+ stream.println(EXCEPTION_SEPARATOR);
getRootException().printStackTrace(stream);
}
}
@@ -99,7 +99,7 @@
_exception.printStackTrace(writer);
}
if (getRootException() != null) {
- System.err.println(EXCEPTION_SEPARATOR);
+ writer.println(EXCEPTION_SEPARATOR);
getRootException().printStackTrace(writer);
}
}
Advertising
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]