You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Paulex Yang (JIRA)" <ji...@apache.org> on 2007/06/07 05:38:26 UTC

[jira] Commented: (HARMONY-4059) [classlib][luni][java6]new constructors of java.io.PipedInputStream

    [ https://issues.apache.org/jira/browse/HARMONY-4059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12502200 ] 

Paulex Yang commented on HARMONY-4059:
--------------------------------------

Tony, the update on PipedOutputStream as below seems a bug fixing? If so, maybe it should go to Java 5 trunk at first?

-            stream.buffer = new byte[PipedInputStream.PIPE_SIZE];
+            if (stream.buffer == null) {
+                stream.buffer = new byte[PipedInputStream.PIPE_SIZE];
+            }


> [classlib][luni][java6]new constructors of java.io.PipedInputStream
> -------------------------------------------------------------------
>
>                 Key: HARMONY-4059
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4059
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Tony Wu
>            Assignee: Paulex Yang
>         Attachments: harmony-4059.diff
>
>
>  constructor java.io.PipedInputStream(int)
>  constructor java.io.PipedInputStream(java.io.PipedOutputStream, int)
>  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.