try with resources decompilation is not accurate
I was suggested to open this java decompiler issue from here https://github.com/deathmarine/Luyten/issues/290
A jdk8 class file with "try with resources" code doesnt decompile correctly
Here's the source

And here's what the tool outputs ( im using v0.5.4) in my default config

I couldn't find past issues around this area. Is this addressed in any of the recent builds? thanks in advance!
This is probably fixed for the next release (javac changed the pattern it emits for try-with-resources sometime after JDK8).
I'm seeing this same issue with --compiler-target 1.8 as well:
java -jar procyon-decompiler-0.6.0.jar -o ./sources-ROOT/classes --compiler-target 1.8 SomeJava8Class.class
The .class file was compiled with Java 1.8.0_101.
The resulting .java file shows the same odd Throwable t2 = null; try { ... } sequence instead of try (...) { ... }.