You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by cu...@apache.org on 2005/03/28 21:21:13 UTC

svn commit: r159283 - incubator/nutch/trunk/src/java/org/apache/nutch/plugin/PluginManifestParser.java

Author: cutting
Date: Mon Mar 28 11:21:13 2005
New Revision: 159283

URL: http://svn.apache.org/viewcvs?view=rev&rev=159283
Log:
Fixed bug #29, a typo.

Modified:
    incubator/nutch/trunk/src/java/org/apache/nutch/plugin/PluginManifestParser.java

Modified: incubator/nutch/trunk/src/java/org/apache/nutch/plugin/PluginManifestParser.java
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/java/org/apache/nutch/plugin/PluginManifestParser.java?view=diff&r1=159282&r2=159283
==============================================================================
--- incubator/nutch/trunk/src/java/org/apache/nutch/plugin/PluginManifestParser.java (original)
+++ incubator/nutch/trunk/src/java/org/apache/nutch/plugin/PluginManifestParser.java Mon Mar 28 11:21:13 2005
@@ -173,7 +173,7 @@
     for (int i = 0; i < libraries.size(); i++) {
       Element library = (Element) libraries.get(i);
       String libName = library.attributeValue("name");
-      Element exportElement = library.element("extport");
+      Element exportElement = library.element("export");
       if (exportElement != null)
         pDescriptor.addExportedLibRelative(libName);
       else