Drive-by type-safety.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1993 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
ray
2006-12-07 01:39:46 +00:00
parent 6580b38f79
commit 3924cddb73
+1 -1
View File
@@ -481,7 +481,7 @@ public class HashIntMap<V> extends AbstractMap<Integer,V>
* Returns an iteration over the elements (values) of this hash int
* map.
*/
public Iterator elements ()
public Iterator<V> elements ()
{
return values().iterator();
}