fixing javadoc links

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@157978 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2005-03-17 21:27:55 +00:00
parent 1cb674fc04
commit 09b58de1db
2 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ public class BooleanQuery extends Query {
/** Returns true iff {@link Similarity#coord(int,int)} is disabled in
* scoring for this query instance.
* @see BooleanQuery(boolean)
* @see #BooleanQuery(boolean)
*/
public boolean isCoordDisabled() { return disableCoord; }

View File

@ -17,13 +17,13 @@ package org.apache.lucene.search;
*/
/** Expert: Delegating scoring implementation. Useful in {@link
* Query#getSimilarity(Searcher) implementations, to override only certain
* Query#getSimilarity(Searcher)} implementations, to override only certain
* methods of a Searcher's Similiarty implementation.. */
public class SimilarityDelegator extends Similarity {
private Similarity delegee;
/** Construct a {@link Similiarity} that delegates all methods to another.
/** Construct a {@link Similarity} that delegates all methods to another.
*
* @param delegee the Similarity implementation to delegate to
*/