Obsoletes Klassen-Attribut entfernt
authorKai Moritz <kai@juplo.de>
Fri, 25 Mar 2022 09:11:07 +0000 (10:11 +0100)
committerKai Moritz <kai@juplo.de>
Fri, 25 Mar 2022 09:13:15 +0000 (10:13 +0100)
src/main/java/de/juplo/kafka/EndlessProducer.java

index 43b0e41..3b90388 100644 (file)
@@ -18,7 +18,6 @@ public class EndlessProducer implements Runnable
   private final ExecutorService executor;
   private final String id;
   private final String topic;
-  private final String acks;
   private final int throttleMs;
   private final KafkaProducer<String, String> producer;
 
@@ -38,7 +37,6 @@ public class EndlessProducer implements Runnable
     this.executor = executor;
     this.id = clientId;
     this.topic = topic;
-    this.acks = acks;
     this.throttleMs = throttleMs;
 
     Properties props = new Properties();