Silence IO Errors
This commit is contained in:
parent
70bde7be45
commit
efb43e6fb9
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user