d01010101 commented on issue #5244:
URL: https://github.com/apache/netbeans/issues/5244#issuecomment-1410166106

   In the case of `for` without braces, it never works. Even in a test project 
which has just been created. Maybe it clashes with some configuration option.
   
   ```
   public class NewClass {
       public static void main(String[] args) {
           System.out.println("");
           while(true)
               System.out.println("");
           for(int i = 0; i < 10; ++i) {
               System.out.println("");
           }
           int j = 1;
           if(j == 1)
               System.out.println("");
           for(int i = 0; i < 10; ++i)
               sout    
       }
   }
   ```


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