minor fix

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150850 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
cmarschner 2002-10-22 15:32:08 +00:00
parent cfc8c67549
commit 71607a59dd
1 changed files with 1 additions and 3 deletions

View File

@ -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
{