Skip to content

Commit 1be195a

Browse files
committed
Fix generics compiler warning
1 parent d31247e commit 1be195a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/io/input/ObservableInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public void finished() throws IOException {
165165

166166
private final List<Observer> observers;
167167

168-
ObservableInputStream(final AbstractBuilder builder) throws IOException {
168+
ObservableInputStream(final AbstractBuilder<?> builder) throws IOException {
169169
super(builder);
170170
this.observers = builder.observers;
171171
}

0 commit comments

Comments
 (0)