Skip to content

Commit

Permalink
[#17] StreamExTest: fix build in javac 8u31; CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
amaembo committed Aug 19, 2016
1 parent 62eccd2 commit 8570086
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Check also [MIGRATION.md](MIGRATION.md) for possible compatibility problems.

### 0.6.2

* [#17] Optimized: `StreamEx.ofTree`, `EntryStream.ofTree`.
* [#104] Added: `StreamEx.ofReversed()`.
* [#105] Added: `MoreCollectors.minMax()`.

Expand Down
4 changes: 2 additions & 2 deletions src/test/java/one/util/streamex/StreamExTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1046,8 +1046,8 @@ public void testOfTreeClose() {
() -> {
if (!cn.title.equals("childA"))
throw new InternalError(cn.title);
})).parallel()) {
test.accept(closableTree);
}))) {
test.accept(closableTree.parallel());
}
catch(InternalError ex) {
catched = true;
Expand Down

0 comments on commit 8570086

Please sign in to comment.