OSHandle.st
changeset 16341 5d233b3b858c
parent 9103 b934315bb0b1
child 16343 d8c82b95b95a
--- a/OSHandle.st	Wed Apr 16 10:23:59 2014 +0200
+++ b/OSHandle.st	Wed Apr 16 10:24:44 2014 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic' }"
 
 ExternalAddress subclass:#OSHandle
@@ -96,13 +95,20 @@
 !OSHandle methodsFor:'queries'!
 
 isValid
-     ^ self address ~~0
+     ^ self address ~~ 0
+! !
+
+!OSHandle methodsFor:'testing'!
+
+isSocketHandle
+    ^ false
 ! !
 
 !OSHandle class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OSHandle.st,v 1.11 2006-02-08 18:27:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OSHandle.st,v 1.12 2014-04-16 08:24:44 stefan Exp $'
 ! !
 
+
 OSHandle initialize!