Skip to content
Snippets Groups Projects
Commit 393adf9d authored by Simon Ehrenstein's avatar Simon Ehrenstein
Browse files

Fix static analysis violations

parent 4e4451b7
No related branches found
No related tags found
No related merge requests found
......@@ -71,8 +71,8 @@ public class WorkloadDistributor {
try {
this.client.blockUntilConnected();
} catch (final InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
LOGGER.error("", e);
throw new IllegalStateException();
}
this.counter =
......
......@@ -9,7 +9,7 @@ import theodolite.commons.workloadgeneration.functions.BeforeAction;
import theodolite.commons.workloadgeneration.functions.MessageGenerator;
import theodolite.commons.workloadgeneration.misc.ZooKeeper;
public class KafkaWorkloadGeneratorBuilder<T extends IMonitoringRecord> {
public final class KafkaWorkloadGeneratorBuilder<T extends IMonitoringRecord> {
private int instances;
......
......@@ -15,7 +15,6 @@ public class ZooKeeper {
* @param port of zookeeper.
*/
public ZooKeeper(final String host, final int port) {
super();
this.host = host;
this.port = port;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment