mbien commented on issue #9046:
URL: https://github.com/apache/netbeans/issues/9046#issuecomment-3591543032

   works for me:
   
   ```java
       public static void test(InputStream input) throws Exception {
           ByteArrayOutputStream outStream = new ByteArrayOutputStream();
           int len;
   
           byte[] buffer = new byte[1024];
   
           while ((len = input.read(buffer)) != -1) {
               outStream.write(buffer, 0, len);
           }
           input.close();
       }
   ```
   
   ->
   
   ```java
       public static void test(InputStream input) throws Exception {
           try (input) {
               ByteArrayOutputStream outStream = new ByteArrayOutputStream();
               int len;
               
               byte[] buffer = new byte[1024];
               
               while ((len = input.read(buffer)) != -1) {
                   outStream.write(buffer, 0, len);
               }
           }
       }
   ```


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