[squeak-dev] The Trunk: SMBase-nice.88.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: SMBase-nice.88.mcz

commits-2
Nicolas Cellier uploaded a new version of SMBase to project The Trunk:
http://source.squeak.org/trunk/SMBase-nice.88.mcz

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

Name: SMBase-nice.88
Author: nice
Time: 5 September 2009, 10:22:37 am
UUID: 92ba52f7-eb3b-4f70-aeae-603ac1d0d64c
Ancestors: SMBase-edc.87

Avoid invoking super when self would do the job.
( super basicNew issue http://bugs.squeak.org/view.php?id=6977 )

=============== Diff against SMBase-edc.87 ===============

Item was changed:
  ----- Method: SMObject class>>newIn: (in category 'instance creation') -----
  newIn: aMap
  "Create a new object in a given map with an UUID to ensure unique identity."
 
+ ^(self basicNew) map: aMap id: UUID new!
- ^(super basicNew) map: aMap id: UUID new!

Item was changed:
  Object subclass: #SMUtilities
  instanceVariableNames: ''
+ classVariableNames: 'MailServer MasterServer'
- classVariableNames: 'MasterServer MailServer'
  poolDictionaries: ''
  category: 'SMBase-UI'!
 
  !SMUtilities commentStamp: 'gk 11/13/2003 23:39' prior: 0!
  Various loose functions in SM.!