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 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.

> @@ -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?

Cheers,

Mark

Attachment: signature.asc
Description: This is a digitally signed message part


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