#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Mon, 23 Apr 2018 18:56:31 +0200
changeset 4635 b135c0746fd5
parent 4634 134765d28a26
child 4636 7e1e0ce3e0b4
#BUGFIX by stefan class: SoundStream changed: #isOpen https://expeccoalm.exept.de/D252299 Do not #close executor shadow copies and o not show them as #isOpen. Fixes a problen when closing all open instances of e.g. Socket
SoundStream.st
--- a/SoundStream.st	Thu Apr 19 10:19:12 2018 +0200
+++ b/SoundStream.st	Mon Apr 23 18:56:31 2018 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
 	      All Rights Reserved
@@ -1726,9 +1728,14 @@
 !
 
 isOpen
+    self isExecutor ifTrue:[
+        ^ false.
+    ].
     handle1 notNil ifTrue:[^ true].
     handle2 notNil ifTrue:[^ true].
     ^ handle notNil
+
+    "Modified: / 23-04-2018 / 18:29:42 / stefan"
 !
 
 nextBytes:count into:anObject startingAt:start