You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Brad Walker (Jira)" <ji...@apache.org> on 2019/11/14 19:37:00 UTC

[jira] [Created] (NETBEANS-3393) cleanup ArrayList uncheck conversion

Brad Walker created NETBEANS-3393:
-------------------------------------

             Summary: cleanup ArrayList uncheck conversion
                 Key: NETBEANS-3393
                 URL: https://issues.apache.org/jira/browse/NETBEANS-3393
             Project: NetBeans
          Issue Type: Improvement
            Reporter: Brad Walker
            Assignee: Brad Walker


There are many places in the code where an unchecked conversion warning is printed by the compiler..


{code:java}
   [repeat] /home/bwalker/src/netbeans/profiler/profiler.attach/src/org/netbeans/modules/profiler/attach/dialog/AttachDialog.java:146: warning: [unchecked] unchecked conversion
   [repeat]             List<RunningVM> targets = new ArrayList();
   [repeat]                                       ^
   [repeat]   required: List<RunningVM>
   [repeat]   found:    ArrayList
{code}


I've tried to remove these but there are several places where it still exists. This is because it would require work other than being simple to fix. I'll try to fix those later.





--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists