terifan opened a new issue, #4276:
URL: https://github.com/apache/netbeans/issues/4276

   ### Apache NetBeans version
   
   Apache NetBeans 14
   
   ### What happened
   
   Obvious bug that make code harder to read. Was working in previous version.
   
   ### How to reproduce
   
   package test;
   
   public class Test
   {
        public static void main(String[] args)
        {
                Abstr impl = new Impl();
                impl.get();
        }
   }
   
   abstract class Abstr
   {
        abstract void get();
   }
   
   class Impl extends Abstr
   {
        @Override
        void get() // <---- considered unused
        {
                System.out.println("hello world");
        }
   }
   
   ### Did this work correctly in an earlier version?
   
   Apache NetBeans 13
   
   ### Operating System
   
   Windows 8.1
   
   ### JDK
   
   17.0.2
   
   ### Apache NetBeans packaging
   
   Apache NetBeans provided installer
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit a pull request?
   
   No
   
   ### Code of Conduct
   
   Yes


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