File tree Expand file tree Collapse file tree 2 files changed +3
-14
lines changed
clients/src/main/java/org/apache/kafka/clients/admin Expand file tree Collapse file tree 2 files changed +3
-14
lines changed Original file line number Diff line number Diff line change @@ -27,20 +27,6 @@ public class TopicListing {
27
27
private final Uuid topicId ;
28
28
private final boolean internal ;
29
29
30
- /**
31
- * Create an instance with the specified parameters.
32
- *
33
- * @param name The topic name
34
- * @param internal Whether the topic is internal to Kafka
35
- * @deprecated Since 3.0 use {@link #TopicListing(String, Uuid, boolean)} instead
36
- */
37
- @ Deprecated
38
- public TopicListing (String name , boolean internal ) {
39
- this .name = name ;
40
- this .internal = internal ;
41
- this .topicId = Uuid .ZERO_UUID ;
42
- }
43
-
44
30
/**
45
31
* Create an instance with the specified parameters.
46
32
*
Original file line number Diff line number Diff line change @@ -196,6 +196,9 @@ <h5><a id="upgrade_400_notable" href="#upgrade_400_notable">Notable changes in 4
196
196
< code > DEAD</ code > if the group ID was not found. In Apache Kafka 4.0, the < code > GroupIdNotFoundException</ code >
197
197
is thrown instead as part of the support for new types of group.
198
198
</ li >
199
+ < li > The < code > org.apache.kafka.clients.admin.TopicListing.TopicListing(String, boolean)</ code > method were removed.
200
+ Please use < code > org.apache.kafka.clients.admin.TopicListing.TopicListing(String, Uuid, boolean)</ code > instead.
201
+ </ li >
199
202
</ ul >
200
203
</ li >
201
204
</ ul >
You can’t perform that action at this time.
0 commit comments