Remove unused 'throws IOException' declarations

This commit is contained in:
Paul Schaub 2023-04-26 16:28:04 +02:00
parent 0aabfac695
commit ed59c713eb
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
6 changed files with 10 additions and 13 deletions

View file

@ -9,7 +9,6 @@ import sop.exception.SOPGPException;
import sop.external.ExternalSOP;
import sop.operation.Dearmor;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
@ -30,7 +29,7 @@ public class DearmorExternal implements Dearmor {
}
@Override
public Ready data(InputStream data) throws SOPGPException.BadData, IOException {
public Ready data(InputStream data) throws SOPGPException.BadData {
return ExternalSOP.executeTransformingOperation(Runtime.getRuntime(), commandList, envList, data);
}
}