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

Fix static analysis violations

parent 6763848f
No related branches found
No related tags found
1 merge request!6Add Distributed Workload Generator
......@@ -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.
Finish editing this message first!
Please register or to comment