Skip to content

Commit

Permalink
Remove wildcard return type in ListItemWriter
Browse files Browse the repository at this point in the history
  • Loading branch information
fmbenhassine committed May 3, 2024
1 parent 74c0b27 commit f6dcea8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2014-2023 the original author or authors.
* Copyright 2014-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -40,7 +40,7 @@ public void write(Chunk<? extends T> chunk) throws Exception {
writtenItems.addAll(chunk.getItems());
}

public List<? extends T> getWrittenItems() {
public List<T> getWrittenItems() {
return this.writtenItems;
}

Expand Down

0 comments on commit f6dcea8

Please sign in to comment.