Fix comments.
authorStefan Vogel <sv@exept.de>
Mon, 03 Jul 2006 18:10:27 +0200
changeset 2136 88cc2d6d4483
parent 2135 23d8fadd9577
child 2137 1cc62200836d
Fix comments. Streamline #literalArrayEncoding
PropertyListDictionary.st
--- a/PropertyListDictionary.st	Mon Jul 03 18:10:17 2006 +0200
+++ b/PropertyListDictionary.st	Mon Jul 03 18:10:27 2006 +0200
@@ -142,7 +142,7 @@
     |coll|
 
     coll := OrderedCollection new.
-    coll add:(self class name asSymbol).
+    coll add:self class name.
 
     self keysAndValuesDo:[:aKey :aVal|
         coll add:aKey; add:(aVal literalArrayEncoding)
@@ -175,5 +175,5 @@
 !PropertyListDictionary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/PropertyListDictionary.st,v 1.6 2006-01-24 10:34:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/PropertyListDictionary.st,v 1.7 2006-07-03 16:10:27 stefan Exp $'
 ! !