LUCENE-4011: Fixed broken javadoc links in solr

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1329023 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christopher John Male 2012-04-23 01:55:02 +00:00
parent c27cfaf411
commit a17404983b
10 changed files with 6 additions and 21 deletions

View File

@ -75,8 +75,7 @@ public class LeaderElector {
* If it is, set the leaderId on the leader zk node. If it is not, start
* watching the candidate that is in line before this one - if it goes down, check
* if this candidate is the leader again.
* @param leaderSeqPath
*
*
* @param seq
* @param context
* @param replacement has someone else been the leader already?

View File

@ -45,16 +45,6 @@ public class SolrXMLSerializer {
/**
* @param w
* Writer to use
* @param defaultCoreName
* to use for cores with name ""
* @param coreDescriptors
* to persist
* @param rootSolrAttribs
* solrxml solr attribs
* @param containerProperties
* to persist
* @param coresAttribs
* solrxml cores attribs
* @throws IOException
*/
void persist(Writer w, SolrXMLDef solrXMLDef) throws IOException {

View File

@ -424,7 +424,7 @@ class FileExchangeRateProvider implements ExchangeRateProvider {
* @param sourceCurrencyCode The source currency being converted from.
* @param targetCurrencyCode The target currency being converted to.
* @return The exchange rate.
* @throws an exception if the requested currency pair cannot be found
* @throws SolrException if the requested currency pair cannot be found
*/
public double getExchangeRate(String sourceCurrencyCode, String targetCurrencyCode) {
if (sourceCurrencyCode == null || targetCurrencyCode == null) {

View File

@ -31,7 +31,7 @@ public interface ExchangeRateProvider {
* @param sourceCurrencyCode
* @param targetCurrencyCode
* @return the exhange rate as a double
* @throws exception if the rate is not defined in the provider
* @throws SolrException if the rate is not defined in the provider
*/
public double getExchangeRate(String sourceCurrencyCode, String targetCurrencyCode) throws SolrException;

View File

@ -61,7 +61,7 @@ public class OpenExchangeRatesOrgProvider implements ExchangeRateProvider {
* @param sourceCurrencyCode The source currency being converted from.
* @param targetCurrencyCode The target currency being converted to.
* @return The exchange rate.
* @throws an exception if the requested currency pair cannot be found
* @throws SolrException if the requested currency pair cannot be found
*/
public double getExchangeRate(String sourceCurrencyCode, String targetCurrencyCode) {
if (rates == null) {

View File

@ -785,7 +785,6 @@ class ExtendedDismaxQParser extends QParser {
/**
* returns a field name or legal field alias from the current
* position of the string
* @param solrParams
*/
public String getFieldName(String s, int pos, int end) {
if (pos >= end) return null;

View File

@ -27,7 +27,7 @@ import java.util.LinkedHashMap;
import java.util.Map;
import java.io.IOException;
/** Utility which converts certain query clauses into {@link QueryFilter}s and
/** Utility which converts certain query clauses into {@link QueryWrapperFilter}s and
* caches these. Only required {@link TermQuery}s whose boost is zero and
* whose term occurs in at least a certain fraction of documents are converted
* to cached filters. This accelerates query constraints like language,

View File

@ -150,7 +150,6 @@ public class ClientUtils
* Returns a formatter that can be use by the current thread if needed to
* convert Date objects to the Internal representation.
* @throws ParseException
* @throws DateParseException
*
* @deprecated Use {@link org.apache.solr.common.util.DateUtil#parseDate(String)}
*/

View File

@ -90,8 +90,6 @@ public class DateUtil {
* @param d The input date to parse
* @return The parsed {@link java.util.Date}
* @throws java.text.ParseException If the input can't be parsed
* @throws org.apache.commons.httpclient.util.DateParseException
* If the input can't be parsed
*/
public static Date parseDate(String d) throws ParseException {
return parseDate(d, DEFAULT_DATE_FORMATS);

View File

@ -101,7 +101,7 @@ public class NamedList<T> implements Cloneable, Serializable, Iterable<Map.Entry
* @return Modified List as per the above description
* @deprecated This a temporary placeholder method until the guts of the class
* are actually replaced by List&lt;String, ?&gt;.
* @see https://issues.apache.org/jira/browse/SOLR-912
* @see <a href="https://issues.apache.org/jira/browse/SOLR-912">SOLR-912</a>
*/
@Deprecated
private List<Object> nameValueMapToList(Map.Entry<String, ? extends T>[] nameValuePairs) {