Allow classes that previously extended Object and had no Constructor to

continue to be constructed without a constructor even if they extend
TrackedObject.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3076 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2004-08-14 01:32:23 +00:00
parent 864adbdc20
commit 62f4ddb82e
@@ -1,5 +1,5 @@
//
// $Id: TrackedObject.java,v 1.1 2004/08/13 23:44:16 mdb Exp $
// $Id: TrackedObject.java,v 1.2 2004/08/14 01:32:23 ray Exp $
package com.threerings.util;
@@ -21,7 +21,6 @@ import com.samskivert.util.Tuple;
public class TrackedObject
{
/** Records that this object came into existence. */
public TrackedObject ()
{
Class clazz = getClass();
synchronized (_map) {