stubborn generics fix

according to the warning below, I am to change something at the end of the line of code. does anyone with knowledge of generics know what that something might be?

C:\Documents and Settings\Larry\disease_profiles\src\disease_profiles\KillerDiseaseStrikesUSA.java:333: warning: [unchecked] unchecked conversion

Iterator<String>it = list.iterator();

[372 byte] By [larry_68a] at [2007-10-2 8:41:20]
# 1
From the message and the tiny bit of code you showed, the only thing I can guess at is that list was declared as being of type List, rather than List<String>.
jverda at 2007-7-16 22:43:22 > top of Java-index,Java Essentials,New To Java...