- Removed erroneous semicolon.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149924 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2003-01-14 00:22:09 +00:00
parent bdc8da1823
commit a7486068de
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public class TermQuery extends Query {
} }
/** Returns the term of this query. */ /** Returns the term of this query. */
public Term getTerm() { return term; }; public Term getTerm() { return term; }
protected Weight createWeight(Searcher searcher) { protected Weight createWeight(Searcher searcher) {
return new TermWeight(searcher); return new TermWeight(searcher);