[java-shib-shared] 03/04: Undeprecate class.
Scott Cantor
cantor.2 at osu.edu
Thu Mar 13 17:28:56 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch maint-9.1
in repository java-shib-shared.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-shared.git;a=commit;h=f2df70d841e5b0ee3ab609377cff7e0ec16ea80d
commit f2df70d841e5b0ee3ab609377cff7e0ec16ea80d
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