OutputStreamWriter.java (OutputStreamWriter): Reverted previous patch; it too was incorrect.

* java/io/OutputStreamWriter.java (OutputStreamWriter): Reverted
	previous patch; it too was incorrect.
	* java/io/PrintStream.java (PrintStream): Likewise.

From-SVN: r29566
This commit is contained in:
Tom Tromey 1999-09-21 21:35:41 +00:00 committed by Tom Tromey
parent 336a6399a9
commit 49d385e3cd
3 changed files with 10 additions and 10 deletions

View file

@ -238,11 +238,9 @@ public class PrintStream extends FilterOutputStream
public PrintStream (OutputStream out, boolean af)
{
BufferedOutputStream buf = (out instanceof BufferedOutputStream
? (BufferedOutputStream) out
: new BufferedOutputStream(out, 250));
super (buf);
this.out = buf;
super ((this.out = (out instanceof BufferedOutputStream
? (BufferedOutputStream) out
: new BufferedOutputStream(out, 250))));
converter = UnicodeToBytes.getDefaultEncoder();
error = false;
auto_flush = af;