mirror of
https://github.com/Z3Prover/z3
synced 2025-04-26 18:45:33 +00:00
parent
6263252bf5
commit
e312b47be6
4 changed files with 40 additions and 14 deletions
|
@ -25,10 +25,19 @@ public class Z3Object extends IDisposable
|
|||
{
|
||||
/**
|
||||
* Finalizer.
|
||||
* @throws Throwable
|
||||
**/
|
||||
protected void finalize()
|
||||
protected void finalize() throws Throwable
|
||||
{
|
||||
dispose();
|
||||
try {
|
||||
dispose();
|
||||
}
|
||||
catch (Throwable t) {
|
||||
throw t;
|
||||
}
|
||||
finally {
|
||||
super.finalize();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue