Skip to content

Commit c873adc

Browse files
committed
Change package-private constructor to private
1 parent 73d9faf commit c873adc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/io/function/IOIteratorAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ static <E> IOIteratorAdapter<E> adapt(final Iterator<E> delegate) {
3434

3535
private final Iterator<E> delegate;
3636

37-
IOIteratorAdapter(final Iterator<E> delegate) {
37+
private IOIteratorAdapter(final Iterator<E> delegate) {
3838
this.delegate = Objects.requireNonNull(delegate, "delegate");
3939
}
4040

0 commit comments

Comments
 (0)