diff --git a/src/dorkbox/util/process/ProcessProxy.java b/src/dorkbox/util/process/ProcessProxy.java index 76e8032..a6f67d3 100644 --- a/src/dorkbox/util/process/ProcessProxy.java +++ b/src/dorkbox/util/process/ProcessProxy.java @@ -45,7 +45,7 @@ class ProcessProxy extends Thread { os.flush(); // this goes to the console, so we don't want to close it! } this.is.close(); - } catch (IOException e) { + } catch (IOException ignored) { } } @@ -91,7 +91,7 @@ class ProcessProxy extends Thread { os.flush(); synchronized (os) { - os.notify(); + os.notifyAll(); } } }