Silence IO Errors

This commit is contained in:
Konloch 2024-10-02 15:10:54 -06:00
parent 70bde7be45
commit efb43e6fb9

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -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();