Skip to content

Commit 563eb42

Browse files
author
Gary Gregory
committed
Format tweaks
1 parent dc69289 commit 563eb42

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/io/StreamIterator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public static <T> Iterator<T> iterator(final Stream<T> stream) {
5252
private final Iterator<E> iterator;
5353

5454
private final Stream<E> stream;
55+
5556
private StreamIterator(final Stream<E> stream) {
5657
this.stream = Objects.requireNonNull(stream, "stream");
5758
this.iterator = stream.iterator();
@@ -63,7 +64,6 @@ private StreamIterator(final Stream<E> stream) {
6364
@Override
6465
public void close() {
6566
stream.close();
66-
6767
}
6868

6969
@Override

0 commit comments

Comments
 (0)