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:
parent
336a6399a9
commit
49d385e3cd
3 changed files with 10 additions and 10 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue