Browse code

Removing unused code with a TODO that no longer needs to be done

Signed-off-by: Kate Heddleston <kate.heddleston@gmail.com>

Kate Heddleston authored on 2017/10/17 06:51:23
Showing 1 changed files
... ...
@@ -17,17 +17,3 @@ func GetExitCode(err error) (int, error) {
17 17
 	}
18 18
 	return exitCode, fmt.Errorf("failed to get exit code")
19 19
 }
20
-
21
-// ProcessExitCode process the specified error and returns the exit status code
22
-// if the error was of type exec.ExitError, returns nothing otherwise.
23
-func ProcessExitCode(err error) (exitCode int) {
24
-	if err != nil {
25
-		var exiterr error
26
-		if exitCode, exiterr = GetExitCode(err); exiterr != nil {
27
-			// TODO: Fix this so we check the error's text.
28
-			// we've failed to retrieve exit code, so we set it to 127
29
-			exitCode = 127
30
-		}
31
-	}
32
-	return
33
-}