// my code try { System.out.println("Hello world!"); } catch (Exception e) { e.printStackTrace(); }
If I surround the try-catch with while (using Surround With), the brace and the code after the try are incorrectly indented:
// my code while (true) { try { System.out.println("Hello world!"); } catch (Exception e) { e.printStackTrace(); } }