Brad Walker created NETBEANS-2616:
-------------------------------------
Summary: remove usage of getURL() as it's deprecated
Key: NETBEANS-2616
URL: https://issues.apache.org/jira/browse/NETBEANS-2616
Project: NetBeans
Issue Type: Improvement
Reporter: Brad Walker
I've started trying to help the NetBeans community by making some improvements
that reduce build cruft.
In particular, we are using getURL() and it's deprecated. Over ~ 160 deprecated
messages are flagged as a result of it's usage..
{quote} [repeat]
/home/bwalker/netbeans-11.0/enterprise/websvc.core/src/org/netbeans/modules/websvc/core/jaxws/saas/RestResourceGenerator.java:130:
warning: [deprecation] getURL() in FileObject has been deprecated
[repeat] WsdlModeler wsdlModeler =
WsdlModelerFactory.getDefault().getWsdlModeler(localWsdl.getURL());
[repeat]
{quote}
In looking at getURL() in FileObject.java it says to use toURL(). So that's
what I did..
Once I made this change, I also had to cleanup a bunch of try-catch errors..
{quote} [repeat]
/home/bwalker/netbeans-11.0/enterprise/websvc.core/src/org/netbeans/modules/websvc/core/jaxws/nodes/JaxWsClientNode.java:451:
error: exception FileStateInvalidException is never thrown in body of
corresponding try statement
[repeat] } catch (FileStateInvalidException ex) {
[repeat] ^
[repeat]
/home/bwalker/netbeans-11.0/enterprise/websvc.core/src/org/netbeans/modules/websvc/core/jaxws/nodes/JaxWsClientNode.java:495:
error: exception FileStateInvalidException is never thrown in body of
corresponding try statement
[repeat] } catch (FileStateInvalidException ex) {
[repeat]
{quote}
This is becuase getURL() throws FileStateInvalidException exception but toURL()
does not.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists