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

   ### Apache NetBeans version
   
   Apache NetBeans 28
   
   ### What happened
   
   Code conversion truncate code
   
   ### Language / Project Type / NetBeans Component
   
   java class library
   
   ### How to reproduce
   
   Initial code is 
           ByteArrayOutputStream outStream = new ByteArrayOutputStream();
           int len;
   
           byte[] buffer = new byte[1024];
   
           while ((len = input.read(buffer)) != -1) {
               outStream.write(buffer, 0, len);
           }
           input.close();
   
           return outStream.toByteArray();
   Netbeans show convert to try-with-ressources and after code is
   
           try (input) {
               outStream = new ByteArrayOutputStream();
               int len;
               byte[] buffer = new byte[1024];
               while ((len = input.read(buffer)) != -1) {
                   outStream.write(buffer, 0, len);
               }
           }
   
   
   ### Did this work correctly in an earlier version?
   
   No / Don't know
   
   ### Operating System
   
   Linux 6.4.0-150600.23.65-default 
   
   ### JDK
   
   Java: 24.0.2; OpenJDK 64-Bit Server VM 24.0.2+12
   
   ### Apache NetBeans packaging
   
   Apache NetBeans binary zip
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit a pull request?
   
   No


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