We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74c0b27 commit f6dcea8Copy full SHA for f6dcea8
spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/ListItemWriter.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2014-2023 the original author or authors.
+ * Copyright 2014-2024 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -40,7 +40,7 @@ public void write(Chunk<? extends T> chunk) throws Exception {
40
writtenItems.addAll(chunk.getItems());
41
}
42
43
- public List<? extends T> getWrittenItems() {
+ public List<T> getWrittenItems() {
44
return this.writtenItems;
45
46
0 commit comments