3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 14:13:23 +00:00

catch/throw is redundant.

This commit is contained in:
George Karpenkov 2016-01-06 10:19:44 +01:00
parent da63ac809e
commit 92bb984305

View file

@ -31,11 +31,7 @@ public class Z3Object extends IDisposable
{ {
try { try {
dispose(); dispose();
} } finally {
catch (Throwable t) {
throw t;
}
finally {
super.finalize(); super.finalize();
} }
} }