The Inbox: Monticello-bp.410.mcz

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

The Inbox: Monticello-bp.410.mcz

commits-2
A new version of Monticello was added to project The Inbox:
http://source.squeak.org/inbox/Monticello-bp.410.mcz

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

Name: Monticello-bp.410
Author: bp
Time: 21 November 2010, 5:14:50.468 pm
UUID: d1fd1b50-24dc-4eb1-8938-ea167b731a79
Ancestors: Monticello-ul.409

- printOn: for MCWorkingCopy prints the package name

=============== Diff against Monticello-ul.409 ===============

Item was added:
+ ----- Method: MCWorkingCopy>>printOn: (in category 'accessing') -----
+ printOn: stream
+ super printOn: stream.
+ stream
+ nextPut: $(;
+ nextPutAll: self packageName;
+ nextPut: $)!