There are 3 permutations of a try...catch...finally block in java.
- try...catch
- try...catch...finally
- try...finally
Once the finally block is executed, control goes to the next line after the finally block. If I remove the finally block and move all its statements to the line after the try...catch block, would that have the same effect as having them in the finally block?