Skip to content

Commit

Permalink
Added parallel base doc processor
Browse files Browse the repository at this point in the history
  • Loading branch information
agibsonccc committed Jan 3, 2013
1 parent 1e3c983 commit 84ba35f
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 27 deletions.
21 changes: 0 additions & 21 deletions src/main/java/com/ccc/sendalyzeit/main/WikiExtractor.java

This file was deleted.

Expand Up @@ -5,6 +5,5 @@

public interface DocRetriever extends Iterator<Document> {

public Document getNextDocument();

}
Expand Up @@ -97,8 +97,4 @@ public void remove() {
throw new RuntimeException( " Not implemented " );
}

public Document getNextDocument() {
return next();
}

}
Expand Up @@ -14,7 +14,7 @@ public class DocumentRetrieverTest {
@Test
public void testDocumentRetriever() {
DocRetriever retriever = new DocumentRetriverImpl( new File( "testdir" ) );
assertEquals(true,retriever.getNextDocument() != null );
assertEquals(true,retriever.next() != null );
}
@Test
public void testDocumentRetrieverContents() {
Expand Down

0 comments on commit 84ba35f

Please sign in to comment.