Skip to content

Commit dfcf093

Browse files
committed
Fix compiler warning.
1 parent fe2f64c commit dfcf093

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

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

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

4646
@Test

0 commit comments

Comments
 (0)