From a5b132757b85daf3057493e6fad61908f338fd17 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Sat, 22 Dec 2007 01:51:46 +0000 Subject: [PATCH] We don't need these methods, really. They are freaking out asdoc. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4918 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/MapProxyObject.as | 39 +++++++++++--------- 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/src/as/com/threerings/util/MapProxyObject.as b/src/as/com/threerings/util/MapProxyObject.as index c05714c5e..1710f3830 100644 --- a/src/as/com/threerings/util/MapProxyObject.as +++ b/src/as/com/threerings/util/MapProxyObject.as @@ -41,24 +41,27 @@ public class MapProxyObject extends Proxy _map = source; } - // from Object (but does not require 'override') - public function hasOwnProperty (name :String) :Boolean - { - return _map.containsKey(name); - } - - // from Object (but does not require 'override') - public function propertyIsEnumerable (name :String) :Boolean - { - return _map.containsKey(name); - } - - // from Object (but does not require 'override') - public function setPropertyIsEnumerable (name :String, isEnum :Boolean = true) :void - { - // no-op - // (Alternatively, we could keep a dictionary of keys that we ignore for enumeration...) - } +// The following are not strictly necessary and are freaking out asdoc, so I'll +// comment them out for now. +// +// // from Object (but does not require 'override') +// public function hasOwnProperty (name :String) :Boolean +// { +// return _map.containsKey(name); +// } +// +// // from Object (but does not require 'override') +// public function propertyIsEnumerable (name :String) :Boolean +// { +// return _map.containsKey(name); +// } +// +// // from Object (but does not require 'override') +// public function setPropertyIsEnumerable (name :String, isEnum :Boolean = true) :void +// { +// // no-op +// // (Alternatively, we could keep a dictionary of keys that we ignore for enumeration...) +// } /** * Handle value = proxy[key].