CollectingReadStream.st
changeset 3083 1befd13e063c
parent 2673 ea71dab56953
child 3092 98fe1a07634d
--- a/CollectingReadStream.st	Sat Aug 10 13:31:03 2013 +0200
+++ b/CollectingReadStream.st	Sat Aug 10 13:31:17 2013 +0200
@@ -104,13 +104,15 @@
 !
 
 position0Based
-    ^ inStream position0Based
+    <resource: #obsolete>
+    ^ inStream position
 
     "Created: / 26-10-2011 / 17:23:56 / cg"
 !
 
 position1Based
-    ^ inStream position1Based
+    <resource: #obsolete>
+    ^ inStream position + 1
 
     "Created: / 26-10-2011 / 17:22:42 / cg"
 !
@@ -124,5 +126,6 @@
 !CollectingReadStream class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/CollectingReadStream.st,v 1.3 2011-10-26 15:31:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CollectingReadStream.st,v 1.4 2013-08-10 11:31:17 stefan Exp $'
 ! !
+