Another small bullshit Ray modification- move super.finalize to the end

in case it throws...


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3078 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2004-08-14 01:56:32 +00:00
parent 93903aead7
commit 56dca09a21
@@ -1,5 +1,5 @@
//
// $Id: TrackedObject.java,v 1.3 2004/08/14 01:52:46 mdb Exp $
// $Id: TrackedObject.java,v 1.4 2004/08/14 01:56:32 ray Exp $
package com.threerings.util;
@@ -36,8 +36,6 @@ public class TrackedObject
protected void finalize ()
throws Throwable
{
super.finalize();
Class clazz = getClass();
synchronized (_map) {
int[] count = (int[])_map.get(clazz);
@@ -48,6 +46,8 @@ public class TrackedObject
"[class=" + clazz + "].");
}
}
super.finalize();
}
/**