[squeak-dev] The Trunk: Kernel-nice.275.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Oct 20 00:01:38 UTC 2009


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

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

Name: Kernel-nice.275
Author: nice
Time: 20 October 2009, 12:00:39 pm
UUID: 9d60c14b-5160-4046-9e7f-3a79c91ca775
Ancestors: Kernel-nice.274

use #fasterKeys bis

classVariablesString was not traitified

=============== Diff against Kernel-nice.274 ===============

Item was changed:
  ----- Method: ClassDescription>>classVariablesString (in category 'printing') -----
  classVariablesString
  	"Answer a string of my class variable names separated by spaces."
  
  	^String streamContents: [ :stream | 
+ 		self classPool fasterKeys sort 
- 		self classPool keys asSortedCollection 
  			do: [ :each | stream nextPutAll: each ]
  			separatedBy: [ stream space ] ]!




More information about the Squeak-dev mailing list