Skip to content

Commit 296f33a

Browse files
committed
relocate via intellij went werid
1 parent 055f200 commit 296f33a

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

solr/api/src/java/org/apache/solr/client/api/endpoint/UpdateApi.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,39 +31,39 @@ public interface UpdateApi {
3131
@POST
3232
@StoreApiParameters
3333
@Operation(
34-
summary = "Add, delete, or update documents using any supported content type",
34+
summary = "Index documents using any supported content type",
3535
tags = {"update"})
3636
SolrJerseyResponse update() throws Exception;
3737

3838
@POST
3939
@Path("/json")
4040
@StoreApiParameters
4141
@Operation(
42-
summary = "Add, delete, or update documents in JSON format",
42+
summary = "Index documents in JSON format",
4343
tags = {"update"})
4444
SolrJerseyResponse updateJson() throws Exception;
4545

4646
@POST
4747
@Path("/xml")
4848
@StoreApiParameters
4949
@Operation(
50-
summary = "Add, delete, or update documents in XML format",
50+
summary = "Index documents in XML format",
5151
tags = {"update"})
5252
SolrJerseyResponse updateXml() throws Exception;
5353

5454
@POST
5555
@Path("/csv")
5656
@StoreApiParameters
5757
@Operation(
58-
summary = "Add, delete, or update documents in CSV format",
58+
summary = "Index documents in CSV format",
5959
tags = {"update"})
6060
SolrJerseyResponse updateCsv() throws Exception;
6161

6262
@POST
6363
@Path("/bin")
6464
@StoreApiParameters
6565
@Operation(
66-
summary = "Add, delete, or update documents in JavaBin format",
66+
summary = "Index documents documents in Javabin format",
6767
tags = {"update"})
6868
SolrJerseyResponse updateBin() throws Exception;
6969
}

solr/core/src/test/org/apache/solr/handler.admin.api/UpdateAPITest.java renamed to solr/core/src/test/org/apache/solr/handler/admin/api/UpdateAPITest.java

File renamed without changes.

0 commit comments

Comments
 (0)