LUCENE-3728: doesn't need to be instance

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene3661@1237771 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-01-30 16:40:55 +00:00
parent cdc68d0921
commit 3cab173f7c
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,6 @@ final class SegmentCoreReaders {
final PerDocProducer perDocProducer;
final PerDocProducer norms;
private final Directory cfsDir;
final int termsIndexDivisor;
private final SegmentReader owner;
@ -88,7 +87,8 @@ final class SegmentCoreReaders {
}
final Codec codec = si.getCodec();
final Directory cfsDir; // confusing name: if (cfs) its the cfsdir, otherwise its the segment's directory.
boolean success = false;
try {