[jira] [Commented] (NETBEANS-2515) cleanup the build issues

2021-05-15 Thread Brad Walker (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2515?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17345075#comment-17345075
 ] 

Brad Walker commented on NETBEANS-2515:
---

cleanup more of the raw type iterator warnings..

> cleanup the build issues
> 
>
> Key: NETBEANS-2515
> URL: https://issues.apache.org/jira/browse/NETBEANS-2515
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Brad Walker
>Assignee: Brad Walker
>Priority: Major
>
> The build process has a lot of errors/warnings.
> I've created this Jira to track all the issues related to cleaning up
> The first canidate is: NETBEANS-2514



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



[jira] [Comment Edited] (NETBEANS-2515) cleanup the build issues

2021-05-15 Thread Brad Walker (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2515?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17345075#comment-17345075
 ] 

Brad Walker edited comment on NETBEANS-2515 at 5/15/21, 4:33 PM:
-

NETBEANS-5682
 - cleanup more of the raw type iterator warnings..


was (Author: brad.walker):
cleanup more of the raw type iterator warnings..

> cleanup the build issues
> 
>
> Key: NETBEANS-2515
> URL: https://issues.apache.org/jira/browse/NETBEANS-2515
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Brad Walker
>Assignee: Brad Walker
>Priority: Major
>
> The build process has a lot of errors/warnings.
> I've created this Jira to track all the issues related to cleaning up
> The first canidate is: NETBEANS-2514



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



[jira] [Created] (NETBEANS-5682) cleanup more of the raw type iterator warnings..

2021-05-15 Thread Brad Walker (Jira)
Brad Walker created NETBEANS-5682:
-

 Summary: cleanup more of the raw type iterator warnings..
 Key: NETBEANS-5682
 URL: https://issues.apache.org/jira/browse/NETBEANS-5682
 Project: NetBeans
  Issue Type: Improvement
Reporter: Brad Walker
Assignee: Brad Walker


I've been away for a little while due to life.. But, the Netbeans Rust Remover 
is back.. 8-)

This issue cleans up more of the raw type iterator warnings..

{code:java}

   [repeat] 
/home/bwalker/src/netbeans/enterprise/web.freeform/src/org/netbeans/modules/web/freeform/ui/NewWebFreeformProjectWizardIterator.java:111:
 warning: [rawtypes] found raw type: Iterator
   [repeat] Iterator iter = webModules.iterator();
   [repeat] ^
   [repeat]   missing type arguments for generic class Iterator
   [repeat]   where E is a type-variable:
   [repeat] E extends Object declared in interface Iterator
{code}






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



[jira] [Commented] (NETBEANS-5376) Update Usage of Java.Security API to Newer Policy API

2021-05-15 Thread Eric Bresie (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5376?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17345067#comment-17345067
 ] 

Eric Bresie commented on NETBEANS-5376:
---

This may also be related to JEP-411 
https://blogs.apache.org/netbeans/entry/jep-411-deprecate-the-security

> Update Usage of Java.Security API to Newer Policy API 
> --
>
> Key: NETBEANS-5376
> URL: https://issues.apache.org/jira/browse/NETBEANS-5376
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.2
>Reporter: Eric Bresie
>Priority: Major
>
> The intent is address changes Java.Security where APIs are depreciated and 
> being removed in future JDK versions. 
> For example code which imports java.security.acl.* may need to be adjusted to 
> utilize a new "Policy" API.  See 
> https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/security/acl/package-summary.html
>   which indicates "The java.security package contains suitable replacements. 
> See Policy and related classes for details. This package is subject to 
> removal in a future version of Java SE."
> JAVASE.jsh JAVASE.jsh import java.security.acl.*;  [position 43:1]
> SolarisPrivilegesSupport.java import java.security.acl.NotOwnerException; 
>  [position 21:1]
> RequestPrivilegesAction.java import java.security.acl.NotOwnerException;  
> [position 21:1]
> RequestPrivilegesTask.java import java.security.acl.NotOwnerException;  
> [position 22:1]
> SPSCommonImpl.java import java.security.acl.NotOwnerException;  [position 
> 21:1]
> SPSLocalImpl.java import java.security.acl.NotOwnerException;  [position 
> 25:1]
> SPSRemoteImpl.java import java.security.acl.NotOwnerException;  [position 
> 30:1]
> SolarisPrivilegesSupportTest.java import java.security.acl.NotOwnerException; 
>  



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



[jira] [Updated] (NETBEANS-4755) remove use of deprecated API - getURL()

2021-05-15 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4755?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated NETBEANS-4755:
-
Labels: pull-request-available  (was: )

> remove use of deprecated API - getURL()
> ---
>
> Key: NETBEANS-4755
> URL: https://issues.apache.org/jira/browse/NETBEANS-4755
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Brad Walker
>Assignee: Brad Walker
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Remove the use of a deprecated API, getURL()..
> {code:java}
>[repeat] 
> /home/bwalker/src/netbeans/platform/openide.loaders/src/org/openide/loaders/XMLDataObject.java:528:
>  warning: [deprecation] getURL() in FileObject has been deprecated
>[repeat] String loc = getPrimaryFile().getURL().toExternalForm();
>[repeat]  ^
> {code}
> In addition, this deprecated API never throws an exception. So once the 
> change was made, also had to removed references to the unused exception.



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