LUCENE-3171: fixup CHANGES, add missing @Override

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1141170 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2011-06-29 17:14:13 +00:00
parent 2f50268803
commit 2b8ef42a5c
2 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,7 @@ New Features
new contrib/join module, to enable searches that require joining new contrib/join module, to enable searches that require joining
between parent and child documents. Joined (children + parent) between parent and child documents. Joined (children + parent)
documents must be indexed as a document block, using documents must be indexed as a document block, using
IndexWriter.add/UpdateDocuments ((Mark Harwood, Mike McCandless) IndexWriter.add/UpdateDocuments (Mark Harwood, Mike McCandless)
API Changes API Changes

View File

@ -108,6 +108,7 @@ public class BlockJoinQuery extends Query {
this.scoreMode = scoreMode; this.scoreMode = scoreMode;
} }
@Override
public Weight createWeight(IndexSearcher searcher) throws IOException { public Weight createWeight(IndexSearcher searcher) throws IOException {
return new BlockJoinWeight(this, childQuery.createWeight(searcher), parentsFilter, scoreMode); return new BlockJoinWeight(this, childQuery.createWeight(searcher), parentsFilter, scoreMode);
} }