mirror of https://github.com/apache/lucene.git
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:
parent
9e2322c5c0
commit
c4f8d9b824
|
@ -73,7 +73,6 @@ final class FieldInfos {
|
||||||
*/
|
*/
|
||||||
public void addIndexed(Collection names, boolean storeTermVectors) {
|
public void addIndexed(Collection names, boolean storeTermVectors) {
|
||||||
Iterator i = names.iterator();
|
Iterator i = names.iterator();
|
||||||
int j = 0;
|
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
add((String)i.next(), true, storeTermVectors);
|
add((String)i.next(), true, storeTermVectors);
|
||||||
}
|
}
|
||||||
|
@ -88,7 +87,6 @@ final class FieldInfos {
|
||||||
*/
|
*/
|
||||||
public void add(Collection names, boolean isIndexed) {
|
public void add(Collection names, boolean isIndexed) {
|
||||||
Iterator i = names.iterator();
|
Iterator i = names.iterator();
|
||||||
int j = 0;
|
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
add((String)i.next(), isIndexed);
|
add((String)i.next(), isIndexed);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue