For grins I tried to see if I had commit access to fix the misspelling myself. Lo and behold I do! I hope I didn't step on any toes by committing this - if so let me know and I'll be more patient and submit patches. I'm a newbie to Nutch and definitely don't want to step in to committing lightly and I'll keep them only at the minor fix type of level if at all.

    Erik


Begin forwarded message:

From: [EMAIL PROTECTED]
Date: July 21, 2005 8:59:07 AM EDT
To: [EMAIL PROTECTED]
Subject: svn commit: r220056 - /lucene/nutch/trunk/src/test/org/ apache/nutch/plugin/TestPluginSystem.java
Reply-To: nutch-dev@lucene.apache.org


Author: ehatcher
Date: Thu Jul 21 05:59:07 2005
New Revision: 220056

URL: http://svn.apache.org/viewcvs?rev=220056&view=rev
Log:
correct misspelling of getExtensions()

Modified:
lucene/nutch/trunk/src/test/org/apache/nutch/plugin/ TestPluginSystem.java

Modified: lucene/nutch/trunk/src/test/org/apache/nutch/plugin/ TestPluginSystem.java URL: http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/test/org/ apache/nutch/plugin/TestPluginSystem.java? rev=220056&r1=220055&r2=220056&view=diff ====================================================================== ======== --- lucene/nutch/trunk/src/test/org/apache/nutch/plugin/ TestPluginSystem.java (original) +++ lucene/nutch/trunk/src/test/org/apache/nutch/plugin/ TestPluginSystem.java Thu Jul 21 05:59:07 2005
@@ -95,7 +95,7 @@
                 .getExtensionPoint(xpId);
         assertEquals(extensionPoint, null);
         Extension[] extension1 = PluginRepository.getInstance()
- .getExtensionPoint(getGetExtensionId ()).getExtentens(); + .getExtensionPoint(getGetExtensionId ()).getExtensions();
         assertEquals(extension1.length, fPluginCount);
         for (int i = 0; i < extension1.length; i++) {
             Extension extension2 = extension1[i];
@@ -109,7 +109,7 @@
      */
public void testGetExtensionInstances() throws PluginRuntimeException {
         Extension[] extensions = PluginRepository.getInstance()
- .getExtensionPoint(getGetExtensionId ()).getExtentens(); + .getExtensionPoint(getGetExtensionId ()).getExtensions();
         assertEquals(extensions.length, fPluginCount);
         for (int i = 0; i < extensions.length; i++) {
             Extension extension = extensions[i];



Reply via email to