[squeak-dev] The Trunk: Collections-nice.441.mcz

commits at source.squeak.org commits at source.squeak.org
Sun May 1 19:56:20 UTC 2011


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

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

Name: Collections-nice.441
Author: nice
Time: 1 May 2011, 9:55:49.878 pm
UUID: 2137bb66-b2ad-44f8-8414-5dce42a0b79e
Ancestors: Collections-ul.440

Remove the bitAnd: mask from leadingChar as it is mostly useless.
Replace it with a comment.

=============== Diff against Collections-ul.440 ===============

Item was changed:
  ----- Method: Character>>leadingChar (in category 'accessing') -----
  leadingChar
+ 	"Answer the value of the 9 highest bits which is used to identify the language.
+ 	This is mostly used for east asian languages CJKV as a workaround against unicode han-unification."
+ 	^ value bitShift: -22!
- 
- 	^ (value bitAnd: (16r3FC00000)) bitShift: -22.
- !




More information about the Squeak-dev mailing list