diff options
| author | Andrew John Hughes <gnu_andrew@member.fsf.org> | 2006-12-10 20:25:39 +0000 |
|---|---|---|
| committer | Andrew John Hughes <gnu_andrew@member.fsf.org> | 2006-12-10 20:25:39 +0000 |
| commit | da66af5951b18b6f5e8752cbbe11f5f842332a33 (patch) | |
| tree | a28e126d1415e3689be6c7b2c2d061ae51194195 /java/lang/Iterable.java | |
| parent | ab90923ee693a17e2e0e37b6ba5a84794c9236de (diff) | |
| download | classpath-da66af5951b18b6f5e8752cbbe11f5f842332a33.tar.gz | |
2006-12-10 Andrew John Hughes <gnu_andrew@member.fsf.org>
* Merge of generics-branch to HEAD (woohoo!)
Diffstat (limited to 'java/lang/Iterable.java')
| -rw-r--r-- | java/lang/Iterable.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/lang/Iterable.java b/java/lang/Iterable.java index 35c426484..ea593e88e 100644 --- a/java/lang/Iterable.java +++ b/java/lang/Iterable.java @@ -49,12 +49,12 @@ import java.util.*; * @author Tom Tromey <tromey@redhat.com> * @since 1.5 */ -public interface Iterable +public interface Iterable<E> { /** * Returns an iterator for the collection. * * @return an iterator. */ - Iterator iterator (); + Iterator<E> iterator (); } |
