You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nutch.apache.org by "Doğacan Güney (JIRA)" <ji...@apache.org> on 2007/08/03 17:53:52 UTC

[jira] Created: (NUTCH-536) Reduce number of warnings in nutch core

Reduce number of warnings in nutch core
---------------------------------------

                 Key: NUTCH-536
                 URL: https://issues.apache.org/jira/browse/NUTCH-536
             Project: Nutch
          Issue Type: Improvement
    Affects Versions: 1.0.0
            Reporter: Doğacan Güney
            Assignee: Doğacan Güney
            Priority: Minor
             Fix For: 1.0.0


Nutch core (code under src/java) gives around 600 warnings. Most of them are unused variables/imports and Java5 generics style warnings. This issue is to track changes to reduce number of warnings.

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


[jira] Updated: (NUTCH-536) Reduce number of warnings in nutch core

Posted by "Doğacan Güney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-536?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doğacan Güney updated NUTCH-536:
--------------------------------

    Attachment: NUTCH-536_v2.patch

New patch.

* Remove unused variables/labels/methods in o.a.n.analysis.Nutch* packages.

> Reduce number of warnings in nutch core
> ---------------------------------------
>
>                 Key: NUTCH-536
>                 URL: https://issues.apache.org/jira/browse/NUTCH-536
>             Project: Nutch
>          Issue Type: Improvement
>    Affects Versions: 1.0.0
>            Reporter: Doğacan Güney
>            Assignee: Doğacan Güney
>            Priority: Minor
>             Fix For: 1.0.0
>
>         Attachments: NUTCH-536_v2.patch, NUTCH_536.patch
>
>
> Nutch core (code under src/java) gives around 600 warnings. Most of them are unused variables/imports and Java5 generics style warnings. This issue is to track changes to reduce number of warnings.

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


[jira] Closed: (NUTCH-536) Reduce number of warnings in nutch core

Posted by "Doğacan Güney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-536?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doğacan Güney closed NUTCH-536.
-------------------------------


> Reduce number of warnings in nutch core
> ---------------------------------------
>
>                 Key: NUTCH-536
>                 URL: https://issues.apache.org/jira/browse/NUTCH-536
>             Project: Nutch
>          Issue Type: Improvement
>    Affects Versions: 1.0.0
>            Reporter: Doğacan Güney
>            Assignee: Doğacan Güney
>            Priority: Minor
>             Fix For: 1.0.0
>
>         Attachments: NUTCH-536_v2.patch, NUTCH_536.patch
>
>
> Nutch core (code under src/java) gives around 600 warnings. Most of them are unused variables/imports and Java5 generics style warnings. This issue is to track changes to reduce number of warnings.

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


[jira] Updated: (NUTCH-536) Reduce number of warnings in nutch core

Posted by "Doğacan Güney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-536?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doğacan Güney updated NUTCH-536:
--------------------------------

    Attachment: NUTCH_536.patch

First patch:

* Uses java 5 generics where possible.

* Removes unused variables/imports.

* Adds SuppressWarnings("serial") to suppress uid warnings.

* Does NOT update code under o.a.n.searcher becase NUTCH-442 changes searcher package substantially and removes most of the warnings.

In total, removes around ~300 warnings.

> Reduce number of warnings in nutch core
> ---------------------------------------
>
>                 Key: NUTCH-536
>                 URL: https://issues.apache.org/jira/browse/NUTCH-536
>             Project: Nutch
>          Issue Type: Improvement
>    Affects Versions: 1.0.0
>            Reporter: Doğacan Güney
>            Assignee: Doğacan Güney
>            Priority: Minor
>             Fix For: 1.0.0
>
>         Attachments: NUTCH_536.patch
>
>
> Nutch core (code under src/java) gives around 600 warnings. Most of them are unused variables/imports and Java5 generics style warnings. This issue is to track changes to reduce number of warnings.

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


[jira] Resolved: (NUTCH-536) Reduce number of warnings in nutch core

Posted by "Doğacan Güney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-536?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doğacan Güney resolved NUTCH-536.
---------------------------------

    Resolution: Fixed

Committed in rev. 563894.


> Reduce number of warnings in nutch core
> ---------------------------------------
>
>                 Key: NUTCH-536
>                 URL: https://issues.apache.org/jira/browse/NUTCH-536
>             Project: Nutch
>          Issue Type: Improvement
>    Affects Versions: 1.0.0
>            Reporter: Doğacan Güney
>            Assignee: Doğacan Güney
>            Priority: Minor
>             Fix For: 1.0.0
>
>         Attachments: NUTCH-536_v2.patch, NUTCH_536.patch
>
>
> Nutch core (code under src/java) gives around 600 warnings. Most of them are unused variables/imports and Java5 generics style warnings. This issue is to track changes to reduce number of warnings.

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


[jira] Commented: (NUTCH-536) Reduce number of warnings in nutch core

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/NUTCH-536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12518628 ] 

Hudson commented on NUTCH-536:
------------------------------

Integrated in Nutch-Nightly #175 (See [http://lucene.zones.apache.org:8080/hudson/job/Nutch-Nightly/175/])

> Reduce number of warnings in nutch core
> ---------------------------------------
>
>                 Key: NUTCH-536
>                 URL: https://issues.apache.org/jira/browse/NUTCH-536
>             Project: Nutch
>          Issue Type: Improvement
>    Affects Versions: 1.0.0
>            Reporter: Doğacan Güney
>            Assignee: Doğacan Güney
>            Priority: Minor
>             Fix For: 1.0.0
>
>         Attachments: NUTCH-536_v2.patch, NUTCH_536.patch
>
>
> Nutch core (code under src/java) gives around 600 warnings. Most of them are unused variables/imports and Java5 generics style warnings. This issue is to track changes to reduce number of warnings.

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