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

@ -62,7 +62,7 @@ public class InlineSignExternal implements InlineSign {
}
@Override
public Ready data(InputStream data) throws IOException, SOPGPException.KeyIsProtected, SOPGPException.ExpectedText {
public Ready data(InputStream data) throws SOPGPException.KeyIsProtected, SOPGPException.ExpectedText {
return ExternalSOP.executeTransformingOperation(Runtime.getRuntime(), commandList, envList, data);
}
}