mirror of https://github.com/apache/lucene.git
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:
parent
cdc68d0921
commit
3cab173f7c
|
@ -54,7 +54,6 @@ final class SegmentCoreReaders {
|
||||||
final PerDocProducer perDocProducer;
|
final PerDocProducer perDocProducer;
|
||||||
final PerDocProducer norms;
|
final PerDocProducer norms;
|
||||||
|
|
||||||
private final Directory cfsDir;
|
|
||||||
final int termsIndexDivisor;
|
final int termsIndexDivisor;
|
||||||
|
|
||||||
private final SegmentReader owner;
|
private final SegmentReader owner;
|
||||||
|
@ -88,6 +87,7 @@ final class SegmentCoreReaders {
|
||||||
}
|
}
|
||||||
|
|
||||||
final Codec codec = si.getCodec();
|
final Codec codec = si.getCodec();
|
||||||
|
final Directory cfsDir; // confusing name: if (cfs) its the cfsdir, otherwise its the segment's directory.
|
||||||
|
|
||||||
boolean success = false;
|
boolean success = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue