[squeak-dev] The Trunk: Multilingual-nice.102.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Mar 16 20:33:07 UTC 2010


Nicolas Cellier uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-nice.102.mcz

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

Name: Multilingual-nice.102
Author: nice
Time: 16 March 2010, 9:32:15.91 pm
UUID: 9c0ea5c9-b646-4b1a-ab76-9b7d6ab8bff8
Ancestors: Multilingual-nice.101

Avoid unecessary asSortedCollection

=============== Diff against Multilingual-nice.101 ===============

Item was changed:
  ----- Method: TranslatedReceiverFinder>>senders (in category 'as yet unclassified') -----
  senders
  
  	| m o |
  	m := SystemNavigation default allCallsOn: #translated.
  	m := m collect: [:e |
  		e classIsMeta ifTrue: [
  			(Smalltalk at: e classSymbol) class decompile: e methodSymbol.
  		] ifFalse: [
  			(Smalltalk at: e classSymbol) decompile: e methodSymbol.
  		]
  	].
  
+ 	o := OrderedCollection new.
- 	o := SortedCollection new.
  	m do: [:e | self searchMethodNode: e addTo: o].
+ 	^ o sort
- 	^ o.
  !




More information about the Squeak-dev mailing list