This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Patch: java.io.PrintStream - PR/13176


On Fri, Dec 05, 2003 at 12:55:30AM +0100, Mark Wielaard wrote:
> On Thu, 2003-12-04 at 22:26, Michael Koch wrote:
> > 
> >  2003-12-04  Michael Koch  <konqueror@gmx.de>
> >  
> > +       * java/io/PrintStream.java: Partly revert my previous patches to get
> > +       rid of gnu.gcj.convert.UnicodeToBytes usage. This fixes PR/13176.
> > +
> 
> It would be nice to have a real ChangeLog entry.

Done. See attachment.

> > @@ -435,6 +522,10 @@
> >          if (auto_flush && (oneByte == '\n'))
> >            flush ();
> >        }
> > +    catch (InterruptedIOException iioe)
> > +      {
> > +        Thread.currentThread ().interrupt ();
> > +      }
> >      catch (IOException e)
> >        {
> >          setError ();
> 
> How/why does this work and why do we need to do this?

After looking closer into this I removed that part of the patch. It was
removed in revision 1.19 which fixed an PR.



Michael

Attachment: printstream.diff
Description: Text document


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]