Chris Hostetter wrote:
: 1) looking at the code:
:
: if (this.hasChanges || this.isCurrent()) {
: // the index hasn't changed - nothing to do here
: return this;
: }
:Shouldn't it be !this.hasChanges?
...that's from DirectoryIndexReader, and it sure looks like a bug t
: 1) looking at the code:
:
: if (this.hasChanges || this.isCurrent()) {
: // the index hasn't changed - nothing to do here
: return this;
: }
:Shouldn't it be !this.hasChanges?
...that's from DirectoryIndexReader, and it sure looks like a bug to me.
: 2) FilterIndexRe
Hi:
Have been reading the 2.3.1 release code and have a few questions
regarding indexReader reopen:
1) looking at the code:
if (this.hasChanges || this.isCurrent()) {
// the index hasn't changed - nothing to do here
return this;
}
Shouldn't it be !this.hasChanges?