Status: New
Owner: ----
New issue 3900 by
[hidden email]:
FileDirectory>>withAllSubdirectoriesCollect:
http://code.google.com/p/pharo/issues/detail?id=3900Pharo 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).