add @return values to avoid javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@808016 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2009-08-26 14:11:30 +00:00
parent 1024fc399b
commit 08cca9dd1a
2 changed files with 4 additions and 4 deletions

View File

@ -124,14 +124,14 @@ public class FastVectorHighlighter {
/**
* return whether phraseHighlight or not.
*
* @return
* @return whether phraseHighlight or not
*/
public boolean isPhraseHighlight(){ return phraseHighlight; }
/**
* return whether fieldMatch or not.
*
* @return
* @return whether fieldMatch or not
*/
public boolean isFieldMatch(){ return fieldMatch; }
}

View File

@ -257,7 +257,7 @@ public class FieldQuery {
*
* @param fieldName
* @param term
* @return
* @return QueryPhraseMap
*/
public QueryPhraseMap getFieldTermMap( String fieldName, String term ){
QueryPhraseMap rootMap = getRootMap( fieldName );
@ -268,7 +268,7 @@ public class FieldQuery {
*
* @param fieldName
* @param phraseCandidate
* @return
* @return QueryPhraseMap
*/
public QueryPhraseMap searchPhrase( String fieldName, final List<TermInfo> phraseCandidate ){
QueryPhraseMap root = getRootMap( fieldName );