From ca9e1aa73031994278acbb5dac054799fb84d310 Mon Sep 17 00:00:00 2001 From: Dave Hoover Date: Fri, 18 Jun 2010 23:40:17 +0000 Subject: [PATCH] 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 --- .../com/threerings/miso/data/SparseMisoSceneModel_Section.as | 4 ++-- src/as/com/threerings/miso/util/ObjectSet.as | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/as/com/threerings/miso/data/SparseMisoSceneModel_Section.as b/src/as/com/threerings/miso/data/SparseMisoSceneModel_Section.as index 6bf22acc..9c7146f0 100644 --- a/src/as/com/threerings/miso/data/SparseMisoSceneModel_Section.as +++ b/src/as/com/threerings/miso/data/SparseMisoSceneModel_Section.as @@ -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); } } diff --git a/src/as/com/threerings/miso/util/ObjectSet.as b/src/as/com/threerings/miso/util/ObjectSet.as index 35fc2629..10f3459d 100644 --- a/src/as/com/threerings/miso/util/ObjectSet.as +++ b/src/as/com/threerings/miso/util/ObjectSet.as @@ -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); } }