matthiasblaesing commented on code in PR #5462:
URL: https://github.com/apache/netbeans/pull/5462#discussion_r1103574507


##########
enterprise/web.jspparser/src/org/netbeans/modules/web/jspparser/ParserServletContext.java:
##########
@@ -660,6 +660,12 @@ public Dynamic addServlet(String string, Servlet srvlt) {
     public Dynamic addServlet(String string, Class<? extends Servlet> type) {
         return null;
     }
+    
+    @Override
+    public Dynamic addJspFile(String servletName, String jspFile) {
+        System.err.println("** addJspFile(servletName,jspFile)");

Review Comment:
   Should this be a logger or even completely removed?



##########
enterprise/web.jspparser/src/org/netbeans/modules/web/jspparser/ParserServletContext.java:
##########
@@ -293,7 +293,7 @@ public Enumeration getInitParameterNames() {
      */
     public int getMajorVersion() {
         
-        return (3);
+        return (4);

Review Comment:
   The parentheses are not necessary



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

Reply via email to