Remove dead code

This commit is contained in:
ghubstan 2020-10-28 17:46:30 -03:00
parent d6524bf46d
commit 2a05203519
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -70,10 +70,8 @@ abstract class AbstractLinuxProcess implements LinuxProcess {
@Override
public void logExceptions(List<Throwable> exceptions, org.slf4j.Logger log) {
StringBuilder errorBuilder = new StringBuilder();
for (Throwable t : exceptions) {
log.error("", t);
errorBuilder.append(t.getMessage()).append("\n");
}
}