The Trunk: Monticello-mt.735.mcz

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

The Trunk: Monticello-mt.735.mcz

commits-2
Nicolas Cellier uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-mt.735.mcz

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

Name: Monticello-mt.735
Author: mt
Time: 5 January 2021, 1:23:12.398865 pm
UUID: b2a82046-9f24-4838-896b-6f669aa8a65d
Ancestors: Monticello-mt.734

Consider version infos being working copies "in disguise" :-)

=============== Diff against Monticello-mt.734 ===============

Item was changed:
  ----- Method: MCAncestry>>isWorkingAncestry (in category 'testing') -----
  isWorkingAncestry
+
+ ^ self name = self nameForWorkingCopy!
- ^ false!

Item was added:
+ ----- Method: MCAncestry>>nameForWorkingCopy (in category 'ancestry') -----
+ nameForWorkingCopy
+
+ ^ '<working copy>'!

Item was changed:
  ----- Method: MCVersionInfo>>name (in category 'accessing') -----
  name
+ ^ name ifNil: [self nameForWorkingCopy]!
- ^ name ifNil: ['<working copy>']!

Item was changed:
  ----- Method: MCWorkingAncestry>>name (in category 'testing') -----
  name
+ ^ self nameForWorkingCopy!
- ^ '<working copy>'!