You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tim Ellison (JIRA)" <ji...@apache.org> on 2007/10/15 14:13:51 UTC

[jira] Closed: (HARMONY-4687) [classlib][logging] Level.java readResolve() bug

     [ https://issues.apache.org/jira/browse/HARMONY-4687?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim Ellison closed HARMONY-4687.
--------------------------------


No response, assuming it is ok.

> [classlib][logging] Level.java readResolve() bug
> ------------------------------------------------
>
>                 Key: HARMONY-4687
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4687
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Imran Ghory
>            Assignee: Tim Ellison
>
> readResolve() in Level.java does:
>                 if (!name.equals(name)) {
>                     continue;
>                 }
> when it should be doing:
>                 if (!name.equals(level.name)) {
>                     continue;
>                 }

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