minchau 2003/10/16 15:51:46
Modified: java/src/org/apache/xalan/xslt Process.java
Log:
PR: bugzilla 16512
Submitted by: Richard Cao
Reviewed by: Brian Minchau
This bug has existed since the earth cooled (Mid 2000).
Clearly 3 of 4 lines were commented out
// if (x)
// diagnositcsWriter.print(...)/
// else
diagnosticsWriter.print(...);
And it was printing a message that we were done, not in the spirit of quiet
success. Richard Cao's patch is applied, the fourth line is now commented
out as well.
Revision Changes Path
1.59 +1 -1 xml-xalan/java/src/org/apache/xalan/xslt/Process.java
Index: Process.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/xslt/Process.java,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- Process.java 14 Aug 2003 16:27:44 -0000 1.58
+++ Process.java 16 Oct 2003 22:51:46 -0000 1.59
@@ -1119,7 +1119,7 @@
// if(!setQuietMode)
// diagnosticsWriter.println(resbundle.getString("xsldone"));
//"Xalan: done");
// else
- diagnosticsWriter.println(""); //"Xalan: done");
+ // diagnosticsWriter.println(""); //"Xalan: done");
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]