Silence IO Errors
This commit is contained in:
parent
70bde7be45
commit
efb43e6fb9
|
@ -56,6 +56,9 @@ public class ProcessUtils
|
||||||
out.append(NL).append(line);
|
out.append(NL).append(line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (IOException ignore)
|
||||||
|
{
|
||||||
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
@ -81,6 +84,9 @@ public class ProcessUtils
|
||||||
err.append(NL).append(line);
|
err.append(NL).append(line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (IOException ignore)
|
||||||
|
{
|
||||||
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user