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

Michael Bien closed NETBEANS-5920.
----------------------------------
    Fix Version/s: 28
       Resolution: Fixed

fixed via https://github.com/apache/netbeans/pull/8719

> org.netbeans.api.java.source.TreeUtilities$5 does not implement method 
> 'abstract java.lang.Object 
> visitSwitchExpression(com.sun.source.tree.SwitchExpressionTree, 
> java.lang.Object)' of interface com.sun.source.tree.TreeVisitor
> ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: NETBEANS-5920
>                 URL: https://issues.apache.org/jira/browse/NETBEANS-5920
>             Project: NetBeans
>          Issue Type: Bug
>          Components: java - Refactoring
>    Affects Versions: 12.4
>            Reporter: Austin Stephens
>            Priority: Major
>             Fix For: 28
>
>
> Error from the refactoring dialog:
>  
> {noformat}
> Module Java Refactoring threw java.lang.AbstractMethodError: Receiver class 
> org.netbeans.api.java.source.TreeUtilities$5 does not define or inherit an 
> implementation of the resolved method 'abstract java.lang.Object 
> visitSwitchExpression(com.sun.source.tree.SwitchExpressionTree, 
> java.lang.Object)' of interface com.sun.source.tree.TreeVisitor.. Please 
> report a bug against Java Refactoring module and attach your 
> var/log/messages.log.{noformat}
> All you need to do to break this is to try to refactor->move this method to 
> another class
>  
> {code:java}
> private int moveMe(){
>       String s = "foo";
>       int num = switch(s){
>               case "foo" -> 0;
>               case "bar" -> 1;
>               default -> -1;
>       };
>       return num;
> }
> {code}
>  
>  
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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