[squeak-dev] The Trunk: EToys-dtl.34.mcz

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

[squeak-dev] The Trunk: EToys-dtl.34.mcz

commits-2
David T. Lewis uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-dtl.34.mcz

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

Name: EToys-dtl.34
Author: dtl
Time: 30 August 2009, 10:55:15 am
UUID: fa445e05-8e85-4fa4-8d32-bfed7de2688a
Ancestors: EToys-dtl.33

Eliminate an unnecessary #oopString send

=============== Diff against EToys-dtl.33 ===============

Item was changed:
  ----- Method: ScriptInstantiation>>printOn: (in category 'printing') -----
  printOn: aStream
  "Print the receiver on aStream"
 
  super printOn: aStream.
+ aStream nextPut: Character space;
+ nextPutAll: self identityHashPrintString;
+ nextPutAll: ' for #', selector asString!
- aStream nextPutAll: ' (', self oopString, ') '.
- aStream nextPutAll: ' for #', selector asString!