Repository: jclouds Updated Branches: refs/heads/master 6bb9c927b -> e7d0c29ce
JCLOUDS-1101: Skip JDK 9 methods in tests Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/e7d0c29c Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/e7d0c29c Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/e7d0c29c Branch: refs/heads/master Commit: e7d0c29ce1796aa707a857e8a2e11b043cd279db Parents: 6bb9c92 Author: Andrew Gaul <[email protected]> Authored: Wed Aug 30 10:38:46 2017 -0700 Committer: Andrew Gaul <[email protected]> Committed: Wed Aug 30 10:39:40 2017 -0700 ---------------------------------------------------------------------- core/src/test/java/org/jclouds/reflect/Reflection2Test.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/e7d0c29c/core/src/test/java/org/jclouds/reflect/Reflection2Test.java ---------------------------------------------------------------------- diff --git a/core/src/test/java/org/jclouds/reflect/Reflection2Test.java b/core/src/test/java/org/jclouds/reflect/Reflection2Test.java index f61a3ed..ca41bc7 100644 --- a/core/src/test/java/org/jclouds/reflect/Reflection2Test.java +++ b/core/src/test/java/org/jclouds/reflect/Reflection2Test.java @@ -129,7 +129,9 @@ public class Reflection2Test { "parallelStream", "removeIf", "spliterator", - "stream"); + "stream", + // Java 9 methods + "of"); private static final ImmutableSet<String> SORTED_SET_METHODS = ImmutableSet.<String>builder() .addAll(SET_METHODS)
