3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

Remove redundant "throw" statement which has no effect.

This commit is contained in:
George Karpenkov 2016-01-06 11:17:32 +01:00
parent d0d7a5b712
commit 93ad8d32b9
2 changed files with 2 additions and 10 deletions

View file

@ -87,11 +87,7 @@ public class Constructor extends Z3Object
{
try {
Native.delConstructor(getContext().nCtx(), getNativeObject());
}
catch (Throwable t) {
throw t;
}
finally {
} finally {
super.finalize();
}
}

View file

@ -31,11 +31,7 @@ public class ConstructorList extends Z3Object
{
try {
Native.delConstructorList(getContext().nCtx(), getNativeObject());
}
catch (Throwable t) {
throw t;
}
finally {
} finally {
super.finalize();
}
}