remove generated code on clean; sonar fixes

This commit is contained in:
Andreas Penski (init) 2020-04-29 17:10:30 +02:00
parent d0000fc698
commit a739868c3b
4 changed files with 28 additions and 18 deletions

View file

@ -36,5 +36,5 @@ public class DefaultConfiguration implements Configuration {
private String date;
public Map<String, Object> additionalParameters;
private Map<String, Object> additionalParameters;
}

View file

@ -75,6 +75,7 @@ public class SourceInput extends AbstractInput {
return (ss.getInputStream() != null && ss.getInputStream().available() == 0)
|| (ss.getReader() != null && !ss.getReader().ready());
} catch (final IOException e) {
log.error("Error checking consumed state", e);
return true;
}
}