mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2025-09-09 10:19:47 +02:00
Increase test coverage
This commit is contained in:
parent
eded55c259
commit
8fc88b5bab
5 changed files with 258 additions and 2 deletions
|
@ -302,8 +302,12 @@ public class ExternalSOP implements SOP {
|
|||
}
|
||||
standardIn.close();
|
||||
|
||||
processOut.flush();
|
||||
processOut.close();
|
||||
try {
|
||||
processOut.flush();
|
||||
processOut.close();
|
||||
} catch (IOException e) {
|
||||
// ignore
|
||||
}
|
||||
|
||||
while ((r = processIn.read(buf)) > 0) {
|
||||
outputStream.write(buf, 0 , r);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue