You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Sian January (JIRA)" <ji...@apache.org> on 2006/12/05 16:29:21 UTC

[jira] Created: (HARMONY-2473) [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody

[classlib] [luni] Fixes for some minor issues in the java.net package found by Melody
-------------------------------------------------------------------------------------

                 Key: HARMONY-2473
                 URL: http://issues.apache.org/jira/browse/HARMONY-2473
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Sian January
            Priority: Minor


I have looked through the issues found by findbugs for the java.net package and have created patches for the ones that seem to be real bugs.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (HARMONY-2473) [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody

Posted by "Sian January (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-2473?page=comments#action_12457274 ] 
            
Sian January commented on HARMONY-2473:
---------------------------------------

Thanks Tim - the patch was applied as expected.  

> [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody
> -------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2473
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2473
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>         Assigned To: Tim Ellison
>            Priority: Minor
>         Attachments: java.net patches.zip
>
>
> I have looked through the issues found by findbugs for the java.net package and have created patches for the ones that seem to be real bugs.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (HARMONY-2473) [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2473?page=all ]

Tim Ellison resolved HARMONY-2473.
----------------------------------

    Resolution: Fixed

Thanks Sian.  It would be good to get a list of those that you examined and considered false hits too.

Your patch was applied to LUNI module at repo revision r484825.

Please check that it was applied as you expected.


> [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody
> -------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2473
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2473
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>         Assigned To: Tim Ellison
>            Priority: Minor
>         Attachments: java.net patches.zip
>
>
> I have looked through the issues found by findbugs for the java.net package and have created patches for the ones that seem to be real bugs.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2473) [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody

Posted by "Sian January (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2473?page=all ]

Sian January updated HARMONY-2473:
----------------------------------

    Patch Info: [Patch Available]

> [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody
> -------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2473
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2473
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>            Priority: Minor
>         Attachments: java.net patches.zip
>
>
> I have looked through the issues found by findbugs for the java.net package and have created patches for the ones that seem to be real bugs.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (HARMONY-2473) [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2473?page=all ]

Tim Ellison reassigned HARMONY-2473:
------------------------------------

    Assignee: Tim Ellison

> [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody
> -------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2473
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2473
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>         Assigned To: Tim Ellison
>            Priority: Minor
>         Attachments: java.net patches.zip
>
>
> I have looked through the issues found by findbugs for the java.net package and have created patches for the ones that seem to be real bugs.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2473) [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody

Posted by "Sian January (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2473?page=all ]

Sian January updated HARMONY-2473:
----------------------------------

    Attachment: java.net patches.zip

Attached a zip file containing both individual patches for the individual bugs and a combined patch (java.net_patch.txt).  Individual patches do the following:

DatagramPacket_patch.txt fixes inconsistent synchronization of DatagramPacket's address and port fields

DatagramSocketImpl_patch.txt removes an unused variable

HttpURLConnection_patch.txt fixes an incorrect use of String.trim()

MulticastSocket_patch.txt fixes some incorrect error messages.

URI_patch.txt fixes an occurrence where x = new StringBuffer() is called twice, with no references or assignments to x in between.

> [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody
> -------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2473
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2473
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>            Priority: Minor
>         Attachments: java.net patches.zip
>
>
> I have looked through the issues found by findbugs for the java.net package and have created patches for the ones that seem to be real bugs.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (HARMONY-2473) [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2473?page=all ]

Tim Ellison closed HARMONY-2473.
--------------------------------


Verified by Sian.


> [classlib] [luni] Fixes for some minor issues in the java.net package found by Melody
> -------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2473
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2473
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Sian January
>         Assigned To: Tim Ellison
>            Priority: Minor
>         Attachments: java.net patches.zip
>
>
> I have looked through the issues found by findbugs for the java.net package and have created patches for the ones that seem to be real bugs.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira