[squeak-dev] The Trunk: SMBase-cmm.135.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Nov 16 04:18:55 UTC 2015


Chris Muller uploaded a new version of SMBase to project The Trunk:
http://source.squeak.org/trunk/SMBase-cmm.135.mcz

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

Name: SMBase-cmm.135
Author: cmm
Time: 15 November 2015, 10:18:47.603 pm
UUID: a9aa0793-91e8-42f4-b71c-8d6509093832
Ancestors: SMBase-eem.134

Minor fix.

=============== Diff against SMBase-eem.134 ===============

Item was changed:
  ----- Method: SMPackage>>releaseWithId: (in category 'services') -----
  releaseWithId: anIdString 
- 	"Look up a specific package release of mine. Return nil if missing.
- 	They are few so we just do a #select:."
- 
  	| anId |
  	anId := UUID fromString: anIdString.
+ 	^ releases
+ 		detect: [ : each | each id = anId ]
+ 		ifNone: [ nil ]!
- 	releases detect: [:rel | rel id = anId ].
- 	^nil!



More information about the Squeak-dev mailing list