SOLR-956 - Javadoc fix

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@734330 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2009-01-14 04:59:33 +00:00
parent ac1a1a8730
commit bc2202a819
1 changed files with 4 additions and 2 deletions

View File

@ -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 <code>null</code> if neither is set.
**/
public Integer getFieldInt(String field, String param) {
String val = getFieldParam(field, param);
try {