Skip to content

Commit 9bc45cf

Browse files
committed
Fix compiler warning.
1 parent dfcf093 commit 9bc45cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/io/channels/FilterWritableByteChannelTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
class FilterWritableByteChannelTest {
4141

4242
private FilterWritableByteChannel<WritableByteChannel> build(final WritableByteChannel channel) throws IOException {
43-
return new FilterWritableByteChannel(channel);
43+
return new FilterWritableByteChannel<>(channel);
4444
}
4545

4646
@Test

0 commit comments

Comments
 (0)