Aelfred2 and JDK1.1 compatibility
Maarten Coene <[email protected]>
| Newsgroups | gmane.comp.java.classpath.extensions.xml |
|---|---|
| Message-ID | <[email protected]> |
Hi, I was browsing through the sources of SAXDriver and XmlParser, and I noticed a comment in the import statements claiming JDK 1.1 compatibility: SAXDriver.java: [...] // maintaining 1.1 compatibility for now ... more portable, PJava, etc // Iterator, Hashmap and ArrayList ought to be faster import java.util.ArrayList; import java.util.Collections; import java.util.Enumeration; import java.util.Hashtable; import java.util.Iterator; import java.util.List; import java.util.Vector; [...] However, some of these imports are not 1.1 compatible ... should the comment be removed, or should the code be refactored to keep 1.1 compatibility? regards, Maarten