mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Minor optimisation.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26059 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
98b7ad73d0
commit
04573159ab
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-02-13 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSArray.m: Minor optimisation ...use a subarray when
|
||||
returning all objects from an array enumerator.
|
||||
|
||||
2008-02-07 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSXMLParser.m: Fix retain/release error.
|
||||
|
|
|
@ -37,7 +37,9 @@
|
|||
@implementation NSEnumerator
|
||||
|
||||
/**
|
||||
* Returns all objects remaining in the enumeration as an array.
|
||||
* Returns all objects remaining in the enumeration as an array.<br />
|
||||
* Calling this method 'exhausts' the enumerator, leaving it at the
|
||||
* end of the collection being enumerated.
|
||||
*/
|
||||
- (NSArray*) allObjects
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue