FileStream.st
changeset 18985 3dc624c18346
parent 18784 82b13911ae7b
child 18987 e336d940d02d
child 19113 06595813d4f6
--- a/FileStream.st	Mon Dec 14 11:00:13 2015 +0100
+++ b/FileStream.st	Mon Dec 14 16:23:34 2015 +0100
@@ -873,9 +873,8 @@
     |executor|
 
     executor := super executor.
-    removeOnClose == true ifTrue:[
-	executor setPathName:pathName removeOnClose:true.
-    ].
+    "keep the pathname for any FileStream"
+    executor setPathName:pathName removeOnClose:removeOnClose.
     ^ executor
 ! !