diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/util/ProcessUtils.java b/src/main/java/the/bytecode/club/bytecodeviewer/util/ProcessUtils.java index da29925f..9dcc009a 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/util/ProcessUtils.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/util/ProcessUtils.java @@ -56,6 +56,9 @@ public class ProcessUtils out.append(NL).append(line); } } + catch (IOException ignore) + { + } catch (Exception e) { e.printStackTrace(); @@ -81,6 +84,9 @@ public class ProcessUtils err.append(NL).append(line); } } + catch (IOException ignore) + { + } catch (Exception e) { e.printStackTrace();