Delete throws clause from method signature

This commit is contained in:
ghubstan 2020-07-15 20:01:30 -03:00
parent c19afebc04
commit b2417d3e5f
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -65,7 +65,7 @@ public class BashCommand {
return this;
}
private void processOutput(SystemCommandExecutor commandExecutor) throws IOException, InterruptedException {
private void processOutput(SystemCommandExecutor commandExecutor) {
// Get the error status and stderr from system command.
StringBuilder stderr = commandExecutor.getStandardErrorFromCommand();
if (stderr.length() > 0)