A new version of Monticello was added to project The Inbox:
http://source.squeak.org/inbox/Monticello-bp.412.mcz==================== Summary ====================
Name: Monticello-bp.412
Author: bp
Time: 21 November 2010, 7:28:32.444 pm
UUID: 6cd35cbd-3caa-4830-8af4-3b9a94f73249
Ancestors: Monticello-bp.411
- use beginsWith: instead of the deprecated startsWith:
=============== Diff against Monticello-bp.411 ===============
Item was changed:
----- Method: MCVersionInfo>>nameWithout: (in category 'accessing') -----
nameWithout: packageName
| result |
result := self name.
+ (result beginsWith: packageName , '-') ifTrue: [
- (result startsWith: packageName , '-') ifTrue: [
result := result copyFrom: packageName size + 2 to: result size].
^result!