Getting a basic error not sure since i am new to java on line where it says ht.keySet(), Type mismatch: cannot convert from element type Object to int
ht is a LinkedHashMap
for (int key : ht.keySet())
{
if(ht.get(key).size() == 0)
{
System.out.println("There is no errors in " + key) ;
}
else
{
System.out.println("ERROR: there are unexpected errors in " + key);
}
}
for (int key : ht.keySet())
{
if(ht.get(key).size() == 0)
{
System.out.println("There is no errors in " + key) ;
}
else
{
System.out.println("ERROR: there are unexpected errors in " + key);
}
}
for-each? download.oracle.com/javase/1,5.0/docs/guide/language/… – Matt Ball Aug 18 '11 at 10:55