That should be private.

If it's public, we try to shadow it in a subclass & wind up still
getting THIS one.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6083 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2010-06-18 23:40:16 +00:00
parent c54c82da55
commit 3b266edcd6
@@ -36,8 +36,6 @@ public class ObjectInputStream
/** Enables verbose object I/O debugging. */
public static const DEBUG :Boolean = false;
public static const log :Log = Log.getLog(ObjectInputStream);
public function ObjectInputStream (source :IDataInput = null, clientProps :Object = null)
{
_source = source || new ByteArray();
@@ -287,5 +285,7 @@ public class ObjectInputStream
protected var _classMap :Array = new Array();
private static var _debugObjectCounter :int = 0;
private static const log :Log = Log.getLog(ObjectInputStream);
}
}