diff --git a/src/common/org/apache/solr/common/params/SolrParams.java b/src/common/org/apache/solr/common/params/SolrParams.java index 4b96fb14106..2415872b7d1 100644 --- a/src/common/org/apache/solr/common/params/SolrParams.java +++ b/src/common/org/apache/solr/common/params/SolrParams.java @@ -130,8 +130,10 @@ public abstract class SolrParams implements Serializable { } } - /** Returns the int value of the field param, - or the value for param, or def if neither is set. */ + /** + * @return The int value of the field param, or the value for param + * or null if neither is set. + **/ public Integer getFieldInt(String field, String param) { String val = getFieldParam(field, param); try {