Skip to content

Commit b53e8fe

Browse files
committed
remove redundant doc
1 parent 10c544e commit b53e8fe

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

clients/src/main/java/org/apache/kafka/clients/admin/ListConsumerGroupOffsetsResult.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ public class ListConsumerGroupOffsetsResult {
4545
/**
4646
* Return a future which yields a map of topic partitions to OffsetAndMetadata objects.
4747
* If the group does not have a committed offset for this partition, the corresponding value in the returned map will be null.
48-
*
49-
* @return Future which yields a map of topic partitions to offsets for the specified group.
5048
*/
5149
public KafkaFuture<Map<TopicPartition, OffsetAndMetadata>> partitionsToOffsetAndMetadata() {
5250
if (futures.size() != 1) {
@@ -60,9 +58,6 @@ public KafkaFuture<Map<TopicPartition, OffsetAndMetadata>> partitionsToOffsetAnd
6058
* Return a future which yields a map of topic partitions to OffsetAndMetadata objects for
6159
* the specified group. If the group doesn't have a committed offset for a specific
6260
* partition, the corresponding value in the returned map will be null.
63-
*
64-
* @param groupId The group ID.
65-
* @return Future which yields a map of topic partitions to offsets for the specified group.
6661
*/
6762
public KafkaFuture<Map<TopicPartition, OffsetAndMetadata>> partitionsToOffsetAndMetadata(String groupId) {
6863
if (!futures.containsKey(groupId))

clients/src/main/java/org/apache/kafka/clients/admin/ListShareGroupOffsetsResult.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ public KafkaFuture<Map<String, Map<TopicPartition, OffsetAndMetadata>>> all() {
6868
/**
6969
* Return a future which yields a map of topic partitions to offsets for the specified group. If the group doesn't
7070
* have a committed offset for a specific partition, the corresponding value in the returned map will be null.
71-
*
72-
* @param groupId The group ID.
73-
* @return Future which yields a map of topic partitions to offsets for the specified group.
7471
*/
7572
public KafkaFuture<Map<TopicPartition, OffsetAndMetadata>> partitionsToOffsetAndMetadata(String groupId) {
7673
if (!futures.containsKey(groupId)) {

clients/src/main/java/org/apache/kafka/clients/admin/ListStreamsGroupOffsetsResult.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,6 @@ public KafkaFuture<Map<String, Map<TopicPartition, OffsetAndMetadata>>> all() {
5252
/**
5353
* Return a future which yields a map of topic partitions to offsets for the specified group. If the group doesn't
5454
* have a committed offset for a specific partition, the corresponding value in the returned map will be null.
55-
*
56-
* @param groupId The group ID.
57-
* @return Future which yields a map of topic partitions to offsets for the specified group.
5855
*/
5956
public KafkaFuture<Map<TopicPartition, OffsetAndMetadata>> partitionsToOffsetAndMetadata(String groupId) {
6057
return delegate.partitionsToOffsetAndMetadata(groupId);

0 commit comments

Comments
 (0)