Commit 08a0a89b by Anthony Green Committed by Anthony Green

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

From-SVN: r26541
parent d50108c7
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.
......
...@@ -218,7 +218,6 @@ public class PrintStream extends FilterOutputStream ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment