Skip to content

Commit 8451480

Browse files
committed
Remove @Nullable: it can't be at this version
1 parent 03f1461 commit 8451480

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/KafkaMessageListenerContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ else if (KafkaMessageListenerContainer.this.getContainerProperties().isSyncCommi
566566
};
567567
}
568568

569-
private void seekPartitions(@Nullable Collection<TopicPartition> partitions, boolean idle) {
569+
private void seekPartitions(Collection<TopicPartition> partitions, boolean idle) {
570570
if (partitions == null) {
571571
return;
572572
}

0 commit comments

Comments
 (0)