You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by ab...@apache.org on 2006/04/05 12:10:02 UTC

svn commit: r391577 - /lucene/nutch/trunk/src/java/org/apache/nutch/crawl/Generator.java

Author: ab
Date: Wed Apr  5 03:09:54 2006
New Revision: 391577

URL: http://svn.apache.org/viewcvs?rev=391577&view=rev
Log:
SelectorInverseMapper needs to implement Mapper, otherwise things break.
Noticed by Shawn Gervais.

Modified:
    lucene/nutch/trunk/src/java/org/apache/nutch/crawl/Generator.java

Modified: lucene/nutch/trunk/src/java/org/apache/nutch/crawl/Generator.java
URL: http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/java/org/apache/nutch/crawl/Generator.java?rev=391577&r1=391576&r2=391577&view=diff
==============================================================================
--- lucene/nutch/trunk/src/java/org/apache/nutch/crawl/Generator.java (original)
+++ lucene/nutch/trunk/src/java/org/apache/nutch/crawl/Generator.java Wed Apr  5 03:09:54 2006
@@ -147,7 +147,7 @@
 
   }
 
-  public static class SelectorInverseMapper extends MapReduceBase {
+  public static class SelectorInverseMapper extends MapReduceBase implements Mapper {
 
     public void map(WritableComparable key, Writable value, OutputCollector output, Reporter reporter) throws IOException {
       SelectorEntry entry = (SelectorEntry)value;