mirror of https://github.com/apache/lucene.git
misc javadoc cleanup to eliminate warnings
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@534181 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
80c14dd19f
commit
184bb143df
|
@ -42,7 +42,7 @@ import java.util.logging.Logger;
|
|||
* Takes a string (e.g. a query string) as the value of the "q" parameter
|
||||
* and looks up alternative spelling suggestions in the spellchecker.
|
||||
* The spellchecker used by this handler is the Lucene contrib SpellChecker.
|
||||
* @see http://wiki.apache.org/jakarta-lucene/SpellChecker
|
||||
* @see <a href="http://wiki.apache.org/jakarta-lucene/SpellChecker">The Lucene Spellchecker documentation</a>
|
||||
*
|
||||
* @author Otis Gospodnetic
|
||||
*/
|
||||
|
|
|
@ -47,7 +47,8 @@ public abstract class ContentStreamBase implements ContentStream
|
|||
/**
|
||||
* Construct a <code>ContentStream</code> from a <code>URL</code>
|
||||
*
|
||||
* This uses a {@Link URLConnection} to get the content stream
|
||||
* This uses a <code>URLConnection</code> to get the content stream
|
||||
* @see URLConnection
|
||||
*/
|
||||
public static class URLStream extends ContentStreamBase
|
||||
{
|
||||
|
|
|
@ -489,7 +489,7 @@ public class SolrPluginUtils {
|
|||
* Like <code>parseFieldBoosts(String)</code>, but parses all the strings
|
||||
* in the provided array (which may be null).
|
||||
*
|
||||
* @param fieldList an array of Strings eg. <code>{"fieldOne^2.3", "fieldTwo"}</code>
|
||||
* @param fieldLists an array of Strings eg. <code>{"fieldOne^2.3", "fieldTwo"}</code>
|
||||
* @return Map of fieldOne => 2.3, fieldThree => -0.4
|
||||
*/
|
||||
public static Map<String,Float> parseFieldBoosts(String[] fieldLists) {
|
||||
|
|
Loading…
Reference in New Issue