OSProcess.st
changeset 22994 fdfec343e2de
parent 22987 3ee91cc9e2d0
child 23002 191ea99d1a08
--- a/OSProcess.st	Tue May 22 22:23:42 2018 +0200
+++ b/OSProcess.st	Tue May 22 22:40:51 2018 +0200
@@ -1,23 +1,21 @@
-"{ Encoding: utf8 }"
-
 "{ Package: 'stx:libbasic' }"
 
 "{ NameSpace: Smalltalk }"
 
 Object subclass:#OSProcess
-        instanceVariableNames:'pid command environment directory inStream outStream errorStream
-                auxStream showWindow lineWise newPgrp exitStatus finishSema
-                shufflerProcesses streamsToClose terminateActionBlock'
-        classVariableNames:''
-        poolDictionaries:''
-        category:'System-Support'
+	instanceVariableNames:'pid command environment directory inStream outStream errorStream
+		auxStream showWindow lineWise newPgrp exitStatus finishSema
+		shufflerProcesses streamsToClose terminateActionBlock'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Support'
 !
 
 OSProcess subclass:#RemoteOSProcess
-        instanceVariableNames:'host'
-        classVariableNames:'MethodPerHost'
-        poolDictionaries:''
-        privateIn:OSProcess
+	instanceVariableNames:'host'
+	classVariableNames:'MethodPerHost'
+	poolDictionaries:''
+	privateIn:OSProcess
 !
 
 !OSProcess class methodsFor:'documentation'!
@@ -777,18 +775,10 @@
         ^ false.
     ].
 
-    (exitStatus notNil and:[exitStatus isError]) ifTrue:[
-        "if we get an early exit status, we can return an error.
-         NOTE: under normal circumstances, the command exits some time later -
-               even if the command cannot be found. So you have to check the exitStatus later
-               or set #terminateActionBlock:"
-        ^ false.
-    ].
-
     ^ true.
 
-    "Modified (comment): / 22-05-2018 / 12:54:26 / Stefan Vogel"
     "Modified: / 22-05-2018 / 12:39:18 / Claus Gittinger"
+    "Modified: / 22-05-2018 / 22:14:38 / Stefan Vogel"
 ! !
 
 !OSProcess methodsFor:'terminating'!