This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
FYI: Patch: java.io.PrintWriter
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Sun, 18 May 2003 09:29:17 +0200
- Subject: FYI: Patch: java.io.PrintWriter
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi list,
I commited the attached patch to trunk to fix the class documentation.
Michael
- --
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE+xzZNWSOgCCdjSDsRAgHhAJ9S3HNHe9DI2jldSp4CrKy+89eVVQCggXCo
P0Q+gBECcNdNYEERT2aW6I4=
=5hWA
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.1896
diff -u -b -B -r1.1896 ChangeLog
--- ChangeLog 16 May 2003 08:09:30 -0000 1.1896
+++ ChangeLog 18 May 2003 07:22:35 -0000
@@ -1,3 +1,8 @@
+2003-05-18 Michael Koch <konqueror@gmx.de>
+
+ * java/io/PrintWriter.java:
+ Moved class documentation, reformatted.
+
2003-05-16 Michael Koch <konqueror@gmx.de>
* java/io/natFileDescriptorPosix.cc
Index: java/io/PrintWriter.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/io/PrintWriter.java,v
retrieving revision 1.10
diff -u -b -B -r1.10 PrintWriter.java
--- java/io/PrintWriter.java 18 Mar 2003 06:00:25 -0000 1.10
+++ java/io/PrintWriter.java 18 May 2003 07:22:35 -0000
@@ -37,6 +37,12 @@
package java.io;
+/* Written using "Java Class Libraries", 2nd edition, plus online
+ * API docs for JDK 1.2 beta from http://www.javasoft.com.
+ * Status: Believed complete and correct.
+ * However, should use native methods for conversion.
+ */
+
/**
* This class prints Java primitive values and objects to a stream as
* text. None of the methods in this class throw an exception. However,
@@ -49,15 +55,9 @@
* in the chars written).
*
* @author Per Bothner <bothner@cygnus.com>
- * @author Aaron M. Renn (arenn@urbanophile.com)
+ * @author Aaron M. Renn <arenn@urbanophile.com>
* @date April 17, 1998.
*/
-/* Written using "Java Class Libraries", 2nd edition, plus online
- * API docs for JDK 1.2 beta from http://www.javasoft.com.
- * Status: Believed complete and correct.
- * However, should use native methods for conversion.
- */
-
public class PrintWriter extends Writer
{
/**