remove unused variables

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150398 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-08-06 20:44:51 +00:00
parent 9e2322c5c0
commit c4f8d9b824
1 changed files with 0 additions and 2 deletions

View File

@ -73,7 +73,6 @@ final class FieldInfos {
*/
public void addIndexed(Collection names, boolean storeTermVectors) {
Iterator i = names.iterator();
int j = 0;
while (i.hasNext()) {
add((String)i.next(), true, storeTermVectors);
}
@ -88,7 +87,6 @@ final class FieldInfos {
*/
public void add(Collection names, boolean isIndexed) {
Iterator i = names.iterator();
int j = 0;
while (i.hasNext()) {
add((String)i.next(), isIndexed);
}