Skip to content

Commit 137b8a1

Browse files
committed
Fix typo in lambda parameter
1 parent ea78e75 commit 137b8a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-kafka/src/main/java/org/springframework/kafka/listener/AbstractConsumerSeekAware.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public void seekToEnd() {
130130
* @since 2.6
131131
*/
132132
public void seekToTimestamp(long time) {
133-
getCallbacksAndTopics().forEach((cb, topcis) -> cb.seekToTimestamp(topcis, time));
133+
getCallbacksAndTopics().forEach((cb, topics) -> cb.seekToTimestamp(topics, time));
134134
}
135135

136136
}

0 commit comments

Comments
 (0)