diff options
author | uacaman <> | 2011-05-10 20:02:10 +0000 |
---|---|---|
committer | uacaman <> | 2011-05-10 20:02:10 +0000 |
commit | 9be85680cfb74fbb5a566822aeb7d38f7c2dc8ca (patch) | |
tree | 29553c08463775a542476e09e600603f1d8bc076 /framework/Collections/TList.php | |
parent | 7c29913f89d0f16f63c4e457e1a232df6e51e905 (diff) |
Issue 264 : Changed Collection to use PHP native ArrayIterator
Diffstat (limited to 'framework/Collections/TList.php')
-rw-r--r-- | framework/Collections/TList.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/Collections/TList.php b/framework/Collections/TList.php index 891fd1b6..af9922d7 100644 --- a/framework/Collections/TList.php +++ b/framework/Collections/TList.php @@ -91,7 +91,7 @@ class TList extends TComponent implements IteratorAggregate,ArrayAccess,Countabl */
public function getIterator()
{
- return new TListIterator($this->_d);
+ return new ArrayIterator( $this->_d );
}
/**
@@ -403,7 +403,8 @@ class TList extends TComponent implements IteratorAggregate,ArrayAccess,Countabl *
* TListIterator is used by TList. It allows TList to return a new iterator
* for traversing the items in the list.
- *
+ *
+ * @deprecated Issue 264 : ArrayIterator should be used instead
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id$
* @package System.Collections
|