[android] Bump dependencies

Signed-off-by: Jean-Baptiste Charron <jeanbaptiste.charron@outlook.fr>
This commit is contained in:
Jean-Baptiste
2025-07-24 09:10:50 +02:00
committed by Konstantin Pastbin
parent f8bfdb898b
commit 1fe8f1f0e6
6 changed files with 11 additions and 14 deletions

View File

@@ -12,8 +12,6 @@ import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
import javax.annotation.concurrent.NotThreadSafe;
/**
* A container for a list of observers.
* <p/>
@@ -31,7 +29,6 @@ import javax.annotation.concurrent.NotThreadSafe;
*
* @param <E> The type of observers that this list should hold.
*/
@NotThreadSafe
public class ObserverList<E> implements Iterable<E> {
/** Extended iterator interface that provides rewind functionality. */
public interface RewindableIterator<E> extends Iterator<E> {