From 69529fc62494022c76ff681ce244c78c24e1582e Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Tue, 23 Jan 2007 22:43:54 +0000 Subject: [PATCH] "get" is a legal function name, so let's be consistent with the Java code. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4508 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/presents/dobj/OidList.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/presents/dobj/OidList.as b/src/as/com/threerings/presents/dobj/OidList.as index e4ce5b8a4..c4e146a78 100644 --- a/src/as/com/threerings/presents/dobj/OidList.as +++ b/src/as/com/threerings/presents/dobj/OidList.as @@ -78,7 +78,7 @@ public class OidList * Returns the object id at the specified index. This does no boundary * checking. */ - public function getAt (index :int) :int + public function get (index :int) :int { return _oids[index]; }