openErrorSignal arg: never a string
authorClaus Gittinger <cg@exept.de>
Thu, 01 Apr 2004 15:33:51 +0200
changeset 8283 8fe0314f8d5a
parent 8282 b209958b06aa
child 8284 e73710353292
openErrorSignal arg: never a string
ExternalStream.st
--- a/ExternalStream.st	Thu Apr 01 14:29:55 2004 +0200
+++ b/ExternalStream.st	Thu Apr 01 15:33:51 2004 +0200
@@ -2268,9 +2268,9 @@
 
     "report an error, that the open failed"
     ^ OpenError
-	raiseRequestWith:self pathName
-	errorString:('error on open: ' , self lastErrorString)
-	"/ in:thisContext sender
+        raiseRequestWith:self
+        errorString:('error on open: ' , self lastErrorString)
+        "/ in:thisContext sender
 
     "Modified: / 28.1.1998 / 14:37:42 / stefan"
     "Modified: / 8.5.1999 / 20:12:12 / cg"
@@ -5896,7 +5896,7 @@
 !ExternalStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.278 2004-03-16 10:28:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.279 2004-04-01 13:33:51 cg Exp $'
 ! !
 
 ExternalStream initialize!