Problems JDK 1.4 and 1.5

I have some code with JDK 5.0 ans Ive had to change it to 1.4

Please, can anyone translate it?

Iterator<ImageWriter> iter = ImageIO

.getImageWritersByMIMEType("image/bmp");

[225 byte] By [jorgiria] at [2007-11-27 11:54:27]
# 1

Just remove <ImageWriter>

Kaj

kajbja at 2007-7-29 18:56:00 > top of Java-index,Java Essentials,Java Programming...
# 2

You'll also need to change any uses of the next() call on the itterator, adding a cast to ImageWriter.

malcolmmca at 2007-7-29 18:56:00 > top of Java-index,Java Essentials,Java Programming...