Or maybe we can add

PackageInfo >> name
^ self packageName




On Tue, Aug 24, 2010 at 4:54 PM, Mariano Martinez Peck <marianopeck@gmail.com> wrote:
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