cadonna commented on code in PR #12384: URL: https://github.com/apache/kafka/pull/12384#discussion_r914709967
########## streams/src/main/java/org/apache/kafka/streams/processor/internals/Tasks.java: ########## @@ -283,24 +280,6 @@ Collection<Task> notPausedTasks() { .collect(Collectors.toList()); } - Set<TaskId> activeTaskIds() { - return readOnlyActiveTaskIds; - } - - Set<TaskId> standbyTaskIds() { - return readOnlyStandbyTaskIds; - } - - // TODO: change return type to `StreamTask` - Map<TaskId, Task> activeTaskMap() { - return readOnlyActiveTasksPerId; - } - - // TODO: change return type to `StandbyTask` - Map<TaskId, Task> standbyTaskMap() { - return readOnlyStandbyTasksPerId; - } - Review Comment: Those methods are not used anywhere. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org