Index: solr/core/src/java/org/apache/solr/core/SolrXMLSerializer.java
===================================================================
--- solr/core/src/java/org/apache/solr/core/SolrXMLSerializer.java (revision 1329018)
+++ solr/core/src/java/org/apache/solr/core/SolrXMLSerializer.java (working copy)
@@ -45,16 +45,6 @@
/**
* @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 {
Index: solr/core/src/java/org/apache/solr/schema/OpenExchangeRatesOrgProvider.java
===================================================================
--- solr/core/src/java/org/apache/solr/schema/OpenExchangeRatesOrgProvider.java (revision 1329018)
+++ solr/core/src/java/org/apache/solr/schema/OpenExchangeRatesOrgProvider.java (working copy)
@@ -61,7 +61,7 @@
* @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) {
Index: solr/core/src/java/org/apache/solr/schema/ExchangeRateProvider.java
===================================================================
--- solr/core/src/java/org/apache/solr/schema/ExchangeRateProvider.java (revision 1329018)
+++ solr/core/src/java/org/apache/solr/schema/ExchangeRateProvider.java (working copy)
@@ -31,7 +31,7 @@
* @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;
Index: solr/core/src/java/org/apache/solr/schema/CurrencyField.java
===================================================================
--- solr/core/src/java/org/apache/solr/schema/CurrencyField.java (revision 1329018)
+++ solr/core/src/java/org/apache/solr/schema/CurrencyField.java (working copy)
@@ -424,7 +424,7 @@
* @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) {
Index: solr/core/src/java/org/apache/solr/search/LuceneQueryOptimizer.java
===================================================================
--- solr/core/src/java/org/apache/solr/search/LuceneQueryOptimizer.java (revision 1329018)
+++ solr/core/src/java/org/apache/solr/search/LuceneQueryOptimizer.java (working copy)
@@ -27,7 +27,7 @@
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,
Index: solr/core/src/java/org/apache/solr/search/ExtendedDismaxQParserPlugin.java
===================================================================
--- solr/core/src/java/org/apache/solr/search/ExtendedDismaxQParserPlugin.java (revision 1329018)
+++ solr/core/src/java/org/apache/solr/search/ExtendedDismaxQParserPlugin.java (working copy)
@@ -785,7 +785,6 @@
/**
* 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;
Index: solr/core/src/java/org/apache/solr/cloud/LeaderElector.java
===================================================================
--- solr/core/src/java/org/apache/solr/cloud/LeaderElector.java (revision 1329018)
+++ solr/core/src/java/org/apache/solr/cloud/LeaderElector.java (working copy)
@@ -75,8 +75,7 @@
* 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?
Index: solr/solrj/src/java/org/apache/solr/common/util/DateUtil.java
===================================================================
--- solr/solrj/src/java/org/apache/solr/common/util/DateUtil.java (revision 1329018)
+++ solr/solrj/src/java/org/apache/solr/common/util/DateUtil.java (working copy)
@@ -90,8 +90,6 @@
* @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);
Index: solr/solrj/src/java/org/apache/solr/common/util/NamedList.java
===================================================================
--- solr/solrj/src/java/org/apache/solr/common/util/NamedList.java (revision 1329018)
+++ solr/solrj/src/java/org/apache/solr/common/util/NamedList.java (working copy)
@@ -101,7 +101,7 @@
* @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<String, ?>.
- * @see https://issues.apache.org/jira/browse/SOLR-912
+ * @see SOLR-912
*/
@Deprecated
private List