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/07/17 20:43:00 UTC

[jira] [Created] (NETBEANS-2864) cleanup some of the variables using a raw Class type..

Brad Walker created NETBEANS-2864:
-------------------------------------

             Summary: cleanup some of the variables using a raw Class type..
                 Key: NETBEANS-2864
                 URL: https://issues.apache.org/jira/browse/NETBEANS-2864
             Project: NetBeans
          Issue Type: Bug
            Reporter: Brad Walker


I've tried to clean up the usage of Class raw types..

Here is how I did this..

bwalker@brads-T460s:~/netbeans$  find ./ -type f -name "*java" -exec egrep -l " Class clazz =" {} \; |  xargs sed -i 's/ Class clazz =/ Class<?> clazz =/g'
bwalker@brads-T460s:~/netbeans$ 

This should only pick up the variables that use a Class raw type. And not a method that might be doing the same thing.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

---------------------------------------------------------------------
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