diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2013-02-18 09:23:47 +0100 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2013-02-18 09:23:47 +0100 |
| commit | 74c89d0ebd22290a6d52be9a3683c688f187e814 (patch) | |
| tree | 27cf9cb54f400841ce60d642b3bf1427ed8bce71 | |
| parent | 65ed02984f004ce736744e56540bc04324f311c4 (diff) | |
No need for the 2 second thread wait for client processes.
| -rw-r--r-- | src/main/java/com/c2kernel/process/StandardClient.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main/java/com/c2kernel/process/StandardClient.java b/src/main/java/com/c2kernel/process/StandardClient.java index 4fa3036..5978068 100644 --- a/src/main/java/com/c2kernel/process/StandardClient.java +++ b/src/main/java/com/c2kernel/process/StandardClient.java @@ -21,12 +21,6 @@ abstract public class StandardClient extends AbstractMain static public void close() {
Gateway.close();
- // allow waiting threads time to quit
- try {
- Thread.sleep(2000);
- } catch (InterruptedException e) {
- }
- System.exit(0);
}
}
|
