Brad Walker created NETBEANS-4458:
-------------------------------------

             Summary: enable use of generics
                 Key: NETBEANS-4458
                 URL: https://issues.apache.org/jira/browse/NETBEANS-4458
             Project: NetBeans
          Issue Type: Improvement
            Reporter: Brad Walker


A lot of places in the code has generic use commented out.. For example, the 
following in
LayoutModel.java

{code:java}
     public void unsetSameSize(List/*<String>*/ components, int dimension) {
        Iterator i = components.iterator();
        while (i.hasNext()) {
            String cid = (String)i.next();
            LayoutComponent lc = getLayoutComponent(cid);
            removeComponentFromLinkSizedGroup(lc, dimension);
        }
    }
{code}

All I've done here is enable it to reduce the warnings and test out the code to 
make sure it works correctly.




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

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

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

Reply via email to