summaryrefslogtreecommitdiffstats
path: root/luni/src/main/java/java/lang/Iterable.java
diff options
context:
space:
mode:
Diffstat (limited to 'luni/src/main/java/java/lang/Iterable.java')
-rw-r--r--luni/src/main/java/java/lang/Iterable.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/luni/src/main/java/java/lang/Iterable.java b/luni/src/main/java/java/lang/Iterable.java
index d12f0a6..31883fb 100644
--- a/luni/src/main/java/java/lang/Iterable.java
+++ b/luni/src/main/java/java/lang/Iterable.java
@@ -21,8 +21,8 @@ import java.util.Iterator;
/**
* Objects of classes that implement this interface can be used within a
* {@code foreach} statement.
- *
- * @since Android 1.0
+ *
+ * @since 1.5
*/
public interface Iterable<T> {
@@ -30,7 +30,6 @@ public interface Iterable<T> {
* Returns an {@link Iterator} for the elements in this object.
*
* @return An {@code Iterator} instance.
- * @since Android 1.0
*/
Iterator<T> iterator();
}