* java/io/PrintStream.java (println): Remove extra println.
From-SVN: r26541
This commit is contained in:
parent
d50108c733
commit
08a0a89b86
2 changed files with 4 additions and 1 deletions
|
@ -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.
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue