You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2019/03/01 10:45:44 UTC

[GitHub] vikasprabhakar commented on a change in pull request #1126: [NETBEANS-1675]Java Hint to fix error :different case kinds used in s…

vikasprabhakar commented on a change in pull request #1126: [NETBEANS-1675]Java Hint to fix error :different case kinds used in s…
URL: https://github.com/apache/incubator-netbeans/pull/1126#discussion_r261556667
 
 

 ##########
 File path: java/java.source.base/src/org/netbeans/api/java/source/TreeMaker.java
 ##########
 @@ -1042,7 +1042,18 @@ public ReturnTree Return(ExpressionTree expression) {
     public SwitchTree Switch(ExpressionTree expression, List<? extends CaseTree> cases) {
         return delegate.Switch(expression, cases);
     }
-    
+
+    /**
+     * Creates a new SwitchExpressionTree.
+     *
+     * @param expression the expression which provides the value to be switched.
+     * @param cases the list of cases, or an empty list.
+     * @see com.sun.source.tree.SwitchExpressionTree
 
 Review comment:
   Changes added

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists