ObjectCoder.st
changeset 18553 6a1c042d2aab
parent 18552 42d6a2c44b94
child 18556 2c67b0fa6ff5
child 19588 26236b5c057d
--- a/ObjectCoder.st	Sat Jul 04 21:00:17 2015 +0200
+++ b/ObjectCoder.st	Sat Jul 04 21:04:22 2015 +0200
@@ -161,6 +161,10 @@
 
 !ObjectCoder methodsFor:'encoding'!
 
+encode:anObject on:aStream 
+    self encode:anObject on:aStream with:nil
+!
+
 encode:anObject on:aStream with:info
     self stream:aStream.
     self startEncoding.
@@ -278,5 +282,9 @@
 
 version
     ^ '$Header$'
+!
+
+version_CVS
+    ^ '$Header$'
 ! !