In: PluginManifestParser.java
private static void parseExtension(Element pRootElement,
PluginDescriptor pPluginDescriptor) {[.snip.]
if (name.equals("id") && name.equals("class"))
continue;[.snip.]
A mistake, right? name cannot be both equal to "id" and "class" - replace && with || (this seems to be the required functionality of that piece of code anyway).
Dawid
------------------------------------------------------- This SF.Net email is sponsored by OSTG. Have you noticed the changes on Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now, one more big change to announce. We are now OSTG- Open Source Technology Group. Come see the changes on the new OSTG site. www.ostg.com _______________________________________________ Nutch-developers mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nutch-developers
