This is an automated email from the ASF dual-hosted git repository.

gaul pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jclouds.git

commit 89e834a4c5b2ac67d74b01b58f9c5d2d0976f809
Author: Andrew Gaul <[email protected]>
AuthorDate: Wed Oct 9 12:18:32 2024 -0700

    Ignore Java 21 SortedSet methods in test
---
 core/src/test/java/org/jclouds/reflect/Reflection2Test.java | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/core/src/test/java/org/jclouds/reflect/Reflection2Test.java 
b/core/src/test/java/org/jclouds/reflect/Reflection2Test.java
index d0ae93086c..8f8681677f 100644
--- a/core/src/test/java/org/jclouds/reflect/Reflection2Test.java
+++ b/core/src/test/java/org/jclouds/reflect/Reflection2Test.java
@@ -143,8 +143,17 @@ public class Reflection2Test {
          .add("last")
          .add("subSet")
          .add("tailSet")
+         // Java 21 methods
+         .add("getFirst")
+         .add("getLast")
+         .add("addFirst")
+         .add("addLast")
+         .add("removeFirst")
+         .add("removeLast")
+         .add("reversed")
          .build();
 
+
    public void testMethods() {
       Set<String> methodNames = 
FluentIterable.from(methods(Set.class)).transform(invokableToName)
             .transform(toStringFunction())

Reply via email to