[java-shib-shared] branch main updated: Undeprecate class.
Scott Cantor
cantor.2 at osu.edu
Thu Feb 6 18:28:34 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-shib-shared.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-shared.git;a=commit;h=a4c335c606ac88894957c2f45e9de7131c6d9e03
The following commit(s) were added to refs/heads/main by this push:
new a4c335c6 Undeprecate class.
a4c335c6 is described below
commit a4c335c606ac88894957c2f45e9de7131c6d9e03
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Feb 6 13:28:29 2025 -0500
Undeprecate class.
---
.../net/shibboleth/shared/collection/ReflectionSafeIterator.java | 6 ------
1 file changed, 6 deletions(-)
diff --git a/shib-support/src/main/java/net/shibboleth/shared/collection/ReflectionSafeIterator.java b/shib-support/src/main/java/net/shibboleth/shared/collection/ReflectionSafeIterator.java
index aade7e0a..a7cce519 100644
--- a/shib-support/src/main/java/net/shibboleth/shared/collection/ReflectionSafeIterator.java
+++ b/shib-support/src/main/java/net/shibboleth/shared/collection/ReflectionSafeIterator.java
@@ -19,8 +19,6 @@ import java.util.Iterator;
import javax.annotation.Nonnull;
import net.shibboleth.shared.logic.Constraint;
-import net.shibboleth.shared.primitive.DeprecationSupport;
-import net.shibboleth.shared.primitive.DeprecationSupport.ObjectType;
/**
* Wrapper class for delegating publically to {@link Iterator} implementations that
@@ -33,10 +31,7 @@ import net.shibboleth.shared.primitive.DeprecationSupport.ObjectType;
* @param <T> iterator type
*
* @since 8.2.0
- *
- * @deprecated
*/
- at Deprecated(forRemoval=true, since="9.0.0")
public class ReflectionSafeIterator<T> implements Iterator<T> {
/** Wrapped iterator. */
@@ -48,7 +43,6 @@ public class ReflectionSafeIterator<T> implements Iterator<T> {
* @param i iterator to wrap
*/
public ReflectionSafeIterator(@Nonnull final Iterator<T> i) {
- DeprecationSupport.warn(ObjectType.CLASS, getClass().getName(), null, null);
iter = Constraint.isNotNull(i, "Wrapped Iterator cannot be null");
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list