From bc2202a819d1c3d052c9b6883ba7cbf800d3ac66 Mon Sep 17 00:00:00 2001 From: Otis Gospodnetic Date: Wed, 14 Jan 2009 04:59:33 +0000 Subject: [PATCH] SOLR-956 - Javadoc fix git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@734330 13f79535-47bb-0310-9956-ffa450edef68 --- src/common/org/apache/solr/common/params/SolrParams.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 {