MCMcdWriter.st
changeset 219 422031ef57dc
parent 31 698b2f37ef60
child 326 5d071d306f4a
--- a/MCMcdWriter.st	Sat Aug 20 13:44:19 2011 +0200
+++ b/MCMcdWriter.st	Sat Aug 20 13:44:24 2011 +0200
@@ -18,8 +18,9 @@
 
 writeBaseInfo: aVersionInfo
 	| string |
-	string _ self serializeVersionInfo: aVersionInfo.
+	string := self serializeVersionInfo: aVersionInfo.
 	self addString: string at: 'base'.
+
 !
 
 writeDefinitions: aVersion
@@ -37,8 +38,8 @@
 
 writePatch: aPatch
 	| old new |
-	old _ OrderedCollection new.
-	new _ OrderedCollection new.
+	old := OrderedCollection new.
+	new := OrderedCollection new.
 	aPatch operations do:
 		[:ea |
 		ea isRemoval ifTrue: [old add: ea definition].
@@ -52,5 +53,13 @@
 !MCMcdWriter class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMcdWriter.st,v 1.1 2006-11-22 13:04:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMcdWriter.st,v 1.2 2011-08-20 11:44:24 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMcdWriter.st,v 1.2 2011-08-20 11:44:24 cg Exp $'
+!
+
+version_SVN
+    ^ '§Id: MCMcdWriter.st 5 2010-08-29 07:30:29Z vranyj1 §'
 ! !