Minor: Fix KafkaConsumer Constructor Summary javadoc

Author: jholoman <jeff.holoman@gmail.com>

Reviewers: Gwen Shapira

Closes #576 from jholoman/minor-consumer-constructor-javadoc
This commit is contained in:
jholoman 2015-11-23 18:22:01 -08:00 committed by Gwen Shapira
parent e32df4722c
commit c213952fa1
1 changed files with 3 additions and 4 deletions

View File

@ -471,8 +471,7 @@ public class KafkaConsumer<K, V> implements Consumer<K, V> {
}
/**
* A consumer is instantiated by providing a set of key-value pairs as configuration, a
* {@link ConsumerRebalanceListener} implementation, a key and a value {@link Deserializer}.
* A consumer is instantiated by providing a set of key-value pairs as configuration, and a key and a value {@link Deserializer}.
* <p>
* Valid configuration strings are documented at {@link ConsumerConfig}
*
@ -501,8 +500,8 @@ public class KafkaConsumer<K, V> implements Consumer<K, V> {
}
/**
* A consumer is instantiated by providing a {@link java.util.Properties} object as configuration and a
* {@link ConsumerRebalanceListener} implementation, a key and a value {@link Deserializer}.
* A consumer is instantiated by providing a {@link java.util.Properties} object as configuration, and a
* key and a value {@link Deserializer}.
* <p>
* Valid configuration strings are documented at {@link ConsumerConfig}
*