CharacterEncoder.st
changeset 8126 33f9c4850e84
parent 8122 29670db31014
child 8127 7531ed2cdf35
--- a/CharacterEncoder.st	Tue Mar 09 00:59:23 2004 +0100
+++ b/CharacterEncoder.st	Tue Mar 09 01:02:08 2004 +0100
@@ -380,9 +380,9 @@
     AccessLock := Semaphore forMutualExclusion.
     NullEncoderInstance := NullEncoder new.
 
-    EncodersByName := IdentityDictionary new.
-    EncoderClassesByName := IdentityDictionary new.
-    CachedEncoders := IdentityDictionary new.
+    EncodersByName := Dictionary new.
+    EncoderClassesByName := Dictionary new.
+    CachedEncoders := Dictionary new.
 
     "/ class decoded-name array-of-encodingNames
     #(
@@ -1213,7 +1213,7 @@
 !CharacterEncoder class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoder.st,v 1.55 2004-03-08 23:55:40 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoder.st,v 1.56 2004-03-09 00:02:08 cg Exp $'
 ! !
 
 CharacterEncoder initialize!