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:
Chris M. Hostetter 2007-05-01 18:20:52 +00:00
parent 80c14dd19f
commit 184bb143df
3 changed files with 4 additions and 3 deletions

View File

@ -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
*/

View File

@ -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
{

View File

@ -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 =&gt; 2.3, fieldThree =&gt; -0.4
*/
public static Map<String,Float> parseFieldBoosts(String[] fieldLists) {