8 lines
180 B
Java
8 lines
180 B
Java
|
|
public class Blah{
|
||
|
|
//...other methods/data members...
|
||
|
|
protected void finalize() throws Throwable{
|
||
|
|
//Finalization code here
|
||
|
|
}
|
||
|
|
//...other methods/data members...
|
||
|
|
}
|