Skip to content

Commit 7497172

Browse files
MicWaltersauroter
authored andcommitted
Little improvement for JavaDoc
1 parent 9d3bfd6 commit 7497172

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/hivemq/extensions/kafka/api/model/KafkaHeader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import java.nio.charset.Charset;
2424

2525
/**
26-
* * Represents the header of a Kafka record, that was either read from or should be written to a Kafka cluster.
26+
* Represents the header of a Kafka record, that was either read from or should be written to a Kafka cluster.
2727
* <p>
2828
* The internal state of this interface is completely immutable. All returned {@link ByteBuffer}s are read only and a
2929
* deep copy of any {@code byte[]} is made for every method call returning one.

src/main/java/com/hivemq/extensions/kafka/api/transformers/mqtttokafka/MqttToKafkaTransformer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Implement this transformer for the programmatic creation of {@link com.hivemq.extensions.kafka.api.model.KafkaRecord}s
2525
* from {@link com.hivemq.extension.sdk.api.packets.publish.PublishPacket}s.
2626
* <p>
27-
* Your implementation of the MqttToKafkaTransformer must be placed in a java archive (.jar) together with all its
27+
* Your implementation of the MqttToKafkaTransformer must be placed in a java archive (.jar) together with all its
2828
* dependencies in the {@code extensions} folder of the HiveMQ Enterprise Extension for Kafka. In addition a {@code
2929
* <mqtt-to-kafka-transformer>} referencing the implementing class via its canonical name must be configured in the
3030
* {@code kafka-extension.xml} file.
@@ -36,7 +36,7 @@
3636
public interface MqttToKafkaTransformer extends Transformer<MqttToKafkaInitInput> {
3737

3838
/**
39-
* This callback is executed for every mqtt PUBLISH that arrives at your HiveMQ cluster matching the in the {@code
39+
* This callback is executed for every MQTT PUBLISH that arrives at your HiveMQ cluster matching the in the {@code
4040
* <mqtt-to-kafka-transformer>} tag configured {@code <mqtt-topic-filters>}. It allows the publication of any number
4141
* of {@link com.hivemq.extensions.kafka.api.model.KafkaRecord}s via the {@link MqttToKafkaOutput} object.
4242
*

0 commit comments

Comments
 (0)