You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Uwe Schindler (Commented) (JIRA)" <ji...@apache.org> on 2012/03/05 12:00:04 UTC

[jira] [Commented] (LUCENE-3850) Fix rawtypes warnings for Java 7 compiler

    [ https://issues.apache.org/jira/browse/LUCENE-3850?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13222271#comment-13222271 ] 

Uwe Schindler commented on LUCENE-3850:
---------------------------------------

This also makes the eclipse compiler more silent, because rawtypes was "ported" from the eclipse compiler to Java 7.
                
> Fix rawtypes warnings for Java 7 compiler
> -----------------------------------------
>
>                 Key: LUCENE-3850
>                 URL: https://issues.apache.org/jira/browse/LUCENE-3850
>             Project: Lucene - Java
>          Issue Type: Improvement
>    Affects Versions: 3.5, 4.0
>            Reporter: Uwe Schindler
>            Assignee: Uwe Schindler
>             Fix For: 3.6, 4.0
>
>
> Java 7 changed the warnings a little bit:
> - Java 6 only knew "unchecked" warning type, applying for all types of generics violations, like missing generics (raw types)
> - Java 7 still knows "unchecked" but only emits warning if the call is really unchecked. Declaration of variables/fields or constructing instances without type param now emits "rawtypes" warning.
> The changes above causes the Java 7 compile now emit lots of "rawtypes" warnings, where Java 6 is silent. The easy fix is to suppres both warning types: @SuppressWarnings({"unchecked","rawtypes"}) for all those places. Changes are easy to do, will provide patch later!

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org