Or maybe we can add
PackageInfo >> name
^ self packageName
Hi. The current implementation of PackageInfo >> printOn:�� is this:
printOn: aStream
��� super printOn: aStream.
��� aStream nextPutAll: '(',self packageName,')'.
So...it prints something like this: 'aPackageInfo(Collections-Weak)'
most of the times I prefer to print 'Collections-Weak'
in my image I change it to
printOn: aStream
��� aStream nextPutAll: self packageName.
Do you think this can be useful for the rest or I just keep it in my image?
Cheers
Mariano