Andreas Raab uploaded a new version of PackageInfo-Base to project The Trunk:
http://source.squeak.org/trunk/PackageInfo-Base-ar.34.mcz==================== Summary ====================
Name: PackageInfo-Base-ar.34
Author: ar
Time: 23 December 2009, 6:53:27 am
UUID: 2cbd7aad-226a-1b4c-bf59-45c415403606
Ancestors: PackageInfo-Base-ar.33
Fix typo in previous comment.
=============== Diff against PackageInfo-Base-ar.33 ===============
Item was changed:
----- Method: PackageInfo>>overriddenMethodsDo: (in category 'enumerating') -----
overriddenMethodsDo: aBlock
+ "Enumerates the methods the receiver contains which have been overridden by other packages"
- "Answers the methods the receiver contains which have been overridden by other packages"
^ self allOverridenMethodsDo: [:ea |
(self isOverrideOfYourMethod: ea)
ifTrue: [aBlock value: ea]]!