#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 25 May 2018 09:44:00 +0200
changeset 23019 99b2d7903bbf
parent 23018 b9676c52f715
child 23020 5c413c4c1188
#DOCUMENTATION by cg class: DirectoryStream comment/format in: #isOpen
DirectoryStream.st
--- a/DirectoryStream.st	Thu May 24 21:10:22 2018 +0200
+++ b/DirectoryStream.st	Fri May 25 09:44:00 2018 +0200
@@ -757,12 +757,18 @@
 !
 
 isOpen
+    "return true, if this stream is open"
+
+    "executors are only used to finalize - they are not really open and are closed with #closeFile,
+     which does not check for #isOpen"
+
     self isExecutor ifTrue:[
         ^ false.
     ].
     ^ dirPointer notNil.
 
     "Modified: / 23-04-2018 / 18:29:51 / stefan"
+    "Modified (comment): / 25-05-2018 / 08:21:57 / Claus Gittinger"
 ! !
 
 !DirectoryStream class methodsFor:'documentation'!