The Trunk: Nebraska-nice.31.mcz

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

The Trunk: Nebraska-nice.31.mcz

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

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

Name: Nebraska-nice.31
Author: nice
Time: 22 August 2010, 8:40:26.511 pm
UUID: 1b08d6e1-e6c2-4e60-9417-4da1c7b175b7
Ancestors: Nebraska-ar.30

minor change: avoid creating a SortedCollection when not necessary...
asSortedCollection asArray -> asArray sort

=============== Diff against Nebraska-ar.30 ===============

Item was changed:
  ----- Method: EToyMultiChatMorph>>updateIPAddressField: (in category 'as yet unclassified') -----
  updateIPAddressField: newAddresses
 
  targetIPAddresses := (
  newAddresses copyWithout: NetNameResolver localAddressString
+ ) asSet asArray sort.
- )
- asSet
- asSortedCollection
- asArray.
 
  (fields at: #ipAddress) contents: targetIPAddresses size printString,' people'.!