This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new fd69e60  IArrayList should extend ICollection
fd69e60 is described below

commit fd69e6012cd29f0a5c89354fb39915be282f8f3f
Author: Harbs <ha...@in-tools.com>
AuthorDate: Fri Jan 8 12:12:13 2021 +0200

    IArrayList should extend ICollection
---
 .../main/royale/org/apache/royale/collections/IArrayList.as  | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git 
a/frameworks/projects/Collections/src/main/royale/org/apache/royale/collections/IArrayList.as
 
b/frameworks/projects/Collections/src/main/royale/org/apache/royale/collections/IArrayList.as
index 53949d5..8d49147 100644
--- 
a/frameworks/projects/Collections/src/main/royale/org/apache/royale/collections/IArrayList.as
+++ 
b/frameworks/projects/Collections/src/main/royale/org/apache/royale/collections/IArrayList.as
@@ -48,7 +48,7 @@ package org.apache.royale.collections
      *  @playerversion AIR 2.6
      *  @productversion Royale 0.0
      */
-       public interface IArrayList extends IEventDispatcher
+       public interface IArrayList extends IEventDispatcher, ICollection
        {
         /**
          *  The array of raw data needing conversion.
@@ -71,16 +71,6 @@ package org.apache.royale.collections
                 */
                function toArray():Array;
 
-        /**
-         *  Fetches an item from the collection
-         *
-         *  @langversion 3.0
-         *  @playerversion Flash 10.2
-         *  @playerversion AIR 2.6
-         *  @productversion Royale 0.0
-         */
-        function getItemAt(index:int):Object;
-
                /**
                 *  Fetches an item from the collection given an index.
                 *

Reply via email to