mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
Remove redundant "throw" statement which has no effect.
This commit is contained in:
parent
d0d7a5b712
commit
93ad8d32b9
2 changed files with 2 additions and 10 deletions
|
@ -87,11 +87,7 @@ public class Constructor extends Z3Object
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
Native.delConstructor(getContext().nCtx(), getNativeObject());
|
Native.delConstructor(getContext().nCtx(), getNativeObject());
|
||||||
}
|
} finally {
|
||||||
catch (Throwable t) {
|
|
||||||
throw t;
|
|
||||||
}
|
|
||||||
finally {
|
|
||||||
super.finalize();
|
super.finalize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,11 +31,7 @@ public class ConstructorList extends Z3Object
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
Native.delConstructorList(getContext().nCtx(), getNativeObject());
|
Native.delConstructorList(getContext().nCtx(), getNativeObject());
|
||||||
}
|
} finally {
|
||||||
catch (Throwable t) {
|
|
||||||
throw t;
|
|
||||||
}
|
|
||||||
finally {
|
|
||||||
super.finalize();
|
super.finalize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue