* java/io/PrintStream.java (println): Remove extra println.

From-SVN: r26541
This commit is contained in:
Anthony Green 1999-04-18 22:22:44 +00:00 committed by Anthony Green
parent d50108c733
commit 08a0a89b86
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1999-04-20 Anthony Green <green@cygnus.com>
* java/io/PrintStream.java (println): Remove extra println.
1999-04-19 Anthony Green <green@cygnus.com> 1999-04-19 Anthony Green <green@cygnus.com>
* Makefile.in: Rebuilt. * Makefile.in: Rebuilt.

View File

@ -218,7 +218,6 @@ public class PrintStream extends FilterOutputStream
public void println (String str) public void println (String str)
{ {
print (str == null ? "null" : str, true); print (str == null ? "null" : str, true);
println ();
} }
public synchronized void println (char ch) public synchronized void println (char ch)