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/nenya/trunk@929 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Dave Hoover
2010-06-18 23:40:17 +00:00
parent e42ebae867
commit ca9e1aa730
2 changed files with 4 additions and 4 deletions
@@ -37,8 +37,6 @@ import com.threerings.util.StringUtil;
public class SparseMisoSceneModel_Section extends SimpleStreamableObject
implements Cloneable
{
public static const log :Log = Log.getLog(SparseMisoSceneModel_Section);
/** The tile coordinate of our upper leftmost tile. */
public var x :int;
public var y :int;
@@ -261,5 +259,7 @@ public class SparseMisoSceneModel_Section extends SimpleStreamableObject
out.writeField(objectYs);
out.writeField(objectInfo);
}
private static const log :Log = Log.getLog(SparseMisoSceneModel_Section);
}
}
+2 -2
View File
@@ -28,8 +28,6 @@ import com.threerings.util.Log;
*/
public class ObjectSet
{
public static const log :Log = Log.getLog(ObjectSet);
/**
* Inserts the supplied object into the set.
*
@@ -156,5 +154,7 @@ public class ObjectSet
/** Our sorted array of objects. */
protected var _objs :Array = new Array();
private static const log :Log = Log.getLog(ObjectSet);
}
}