mirror of https://github.com/apache/lucene.git
SOLR-2742: Fixed typo in JavaDoc
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1170572 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
34dce548e3
commit
388d38e0a8
|
@ -61,7 +61,7 @@ public abstract class SolrServer implements Serializable
|
|||
* @param commitWithinMs max time (in ms) before a commit will happen
|
||||
* @throws SolrServerException
|
||||
* @throws IOException
|
||||
* @since solr 3.4
|
||||
* @since solr 3.5
|
||||
*/
|
||||
public UpdateResponse add(Collection<SolrInputDocument> docs, int commitWithinMs) throws SolrServerException, IOException {
|
||||
UpdateRequest req = new UpdateRequest();
|
||||
|
@ -86,7 +86,7 @@ public abstract class SolrServer implements Serializable
|
|||
* @param commitWithinMs max time (in ms) before a commit will happen
|
||||
* @throws SolrServerException
|
||||
* @throws IOException
|
||||
* @since solr 3.4
|
||||
* @since solr 3.5
|
||||
*/
|
||||
public UpdateResponse addBeans(Collection<?> beans, int commitWithinMs) throws SolrServerException, IOException {
|
||||
DocumentObjectBinder binder = this.getBinder();
|
||||
|
@ -113,7 +113,7 @@ public abstract class SolrServer implements Serializable
|
|||
* @param commitWithinMs max time (in ms) before a commit will happen
|
||||
* @throws SolrServerException
|
||||
* @throws IOException
|
||||
* @since solr 3.4
|
||||
* @since solr 3.5
|
||||
*/
|
||||
public UpdateResponse add(SolrInputDocument doc, int commitWithinMs) throws SolrServerException, IOException {
|
||||
UpdateRequest req = new UpdateRequest();
|
||||
|
@ -138,7 +138,7 @@ public abstract class SolrServer implements Serializable
|
|||
* @param commitWithinMs max time (in ms) before a commit will happen
|
||||
* @throws SolrServerException
|
||||
* @throws IOException
|
||||
* @since solr 3.4
|
||||
* @since solr 3.5
|
||||
*/
|
||||
public UpdateResponse addBean(Object obj, int commitWithinMs) throws IOException, SolrServerException {
|
||||
return add(getBinder().toSolrInputDocument(obj),commitWithinMs);
|
||||
|
|
Loading…
Reference in New Issue