Issue 3900 in pharo: FileDirectory>>withAllSubdirectoriesCollect:

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 3900 in pharo: FileDirectory>>withAllSubdirectoriesCollect:

pharo
Status: New
Owner: ----

New issue 3900 by [hidden email]:  
FileDirectory>>withAllSubdirectoriesCollect:
http://code.google.com/p/pharo/issues/detail?id=3900

Pharo image: Pharo 1.1.1 (and checked in Pharo-core 1.2)
Pharo core version: Pharo-1.1.1 #11414
Virtual machine used: <ex: pharo-vm-0.15.2f-linux>
Class browser used (if applicable): SystemBrowser default

Steps to reproduce:
The withAllSubdirectoriesCollect: method returns an OrderedCollection of  
OrderedCollections of entries. That is, one OrderedCollection per  
subdirectory.

To change it to return a single OrderedCollection of all entries from all  
subdirectories change the following line:
From: result add: (aBlock value: dir).
To:   result addAll: (aBlock value: dir).


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3900 in pharo: FileDirectory>>withAllSubdirectoriesCollect:

pharo
Updates:
        Status: FixToInclude
        Labels: Milestone-1.3

Comment #1 on issue 3900 by [hidden email]:  
FileDirectory>>withAllSubdirectoriesCollect:
http://code.google.com/p/pharo/issues/detail?id=3900

(No comment was entered for this change.)


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3900 in pharo: FileDirectory>>withAllSubdirectoriesCollect:

pharo
Updates:
        Status: Closed

Comment #2 on issue 3900 by [hidden email]:  
FileDirectory>>withAllSubdirectoriesCollect:
http://code.google.com/p/pharo/issues/detail?id=3900

in 13121