The Trunk: Installer-Core-cmm.356.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Installer-Core-cmm.356.mcz

commits-2
Chris Muller uploaded a new version of Installer-Core to project The Trunk:
http://source.squeak.org/trunk/Installer-Core-cmm.356.mcz

==================== Summary ====================

Name: Installer-Core-cmm.356
Author: cmm
Time: 2 June 2012, 7:39:53.422 pm
UUID: deb858f0-816f-4e64-bdce-d14652854ad1
Ancestors: Installer-Core-bf.355

Strengthen InstallerMantis>>#=.

=============== Diff against Installer-Core-bf.355 ===============

Item was changed:
  ----- Method: InstallerMantis>>= (in category 'accessing') -----
  = other
+ self == other ifTrue: [ ^ true ].
+ self species = other species ifFalse: [ ^ false ].
-
  ^ array = other array!