From 71607a59dd1c35fbed0a7b626a5dbc5550fa3384 Mon Sep 17 00:00:00 2001 From: cmarschner Date: Tue, 22 Oct 2002 15:32:08 +0000 Subject: [PATCH] minor fix git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150850 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/de/lanlab/larm/storage/LuceneStorage.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/LuceneStorage.java b/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/LuceneStorage.java index f2b849a7394..e421caf5c7b 100644 --- a/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/LuceneStorage.java +++ b/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/LuceneStorage.java @@ -198,9 +198,6 @@ public class LuceneStorage implements DocumentStorage public WebDocument store(WebDocument webDoc) { //System.out.println("storing " + webDoc.getUrl()); - boolean store = false; - boolean index = false; - boolean token = false; Document doc = new Document(); int flags; @@ -225,6 +222,7 @@ public class LuceneStorage implements DocumentStorage addField(doc, fieldName, (String)field, STORE | INDEX); } /* else ? */ + // ignore byte[] fields } try {