Levente Uzonyi uploaded a new version of Files to project The Trunk:
http://source.squeak.org/trunk/Files-ul.58.mcz==================== Summary ====================
Name: Files-ul.58
Author: ul
Time: 12 December 2009, 2:56:14 am
UUID: 00e73bd5-0e9c-3747-9907-2b05618874ea
Ancestors: Files-ul.57
- removed SourceFileArray >> #collect: because it's same as in super
=============== Diff against Files-ul.57 ===============
Item was removed:
- ----- Method: SourceFileArray>>collect: (in category 'accessing') -----
- collect: aBlock
- | copy |
- copy := self species new: self size.
- 1 to: self size do:[:i| copy at: i put: (aBlock value: (self at: i))].
- ^copy!