pepness commented on code in PR #4454:
URL: https://github.com/apache/netbeans/pull/4454#discussion_r943755060
##########
enterprise/tomcat5/src/org/netbeans/modules/tomcat5/j2ee/JaxWsStack.java:
##########
@@ -169,21 +169,17 @@ private String[] getDetectedMetroLibs() {
private boolean isKeystore() {
- if (new File(catalinaHome, KEYSTORE_LOCATION).exists()) return true;
- else return false;
+ return new File(catalinaHome, KEYSTORE_LOCATION).exists();
Review Comment:
I agree, we should do a io to nio in a new PR. Will look into that.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
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