Skip to content

Commit

Permalink
Hotfix skip operator, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
aNNiMON committed Mar 3, 2016
1 parent 680d602 commit 9aec2ba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Stream.of(/* array | list | set | map | anything based on Iterator/Iterable inte
.sorted()
.forEach(..);
Stream.of(value1, value2, value3)...
Stream.ofRange(0, 10)...
Stream.range(0, 10)...
```
Example project: https://github.com/aNNiMON/Android-Java-8-Stream-Example

Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/annimon/stream/Stream.java
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,6 @@ public boolean hasNext() {
iterator.next();
skippedCount++;
}
return true;
}
return iterator.hasNext();
}
Expand Down

0 comments on commit 9aec2ba

Please sign in to comment.