Skip to content

Commit d8ebf23

Browse files
committed
Polishing.
Fix Javadoc errors. See spring-projects#2095
1 parent 4b53be9 commit d8ebf23

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

src/main/java/org/springframework/data/elasticsearch/annotations/Document.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* Name of the Elasticsearch index.
4545
* <ul>
4646
* <li>Lowercase only</li>
47-
* <li>Cannot include \, /, *, ?, ", <, >, |, ` ` (space character), ,, #</li>
47+
* <li>Cannot include \, /, *, ?, ", &gt;, &lt;, |, ` ` (space character), ,, #</li>
4848
* <li>Cannot start with -, _, +</li>
4949
* <li>Cannot be . or ..</li>
5050
* <li>Cannot be longer than 255 bytes (note it is bytes, so multi-byte characters will count towards the 255 limit

src/main/java/org/springframework/data/elasticsearch/core/ReactiveSearchOperations.java

-4
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ default <T> Flux<SearchHit<T>> search(Query query, Class<T> entityType, IndexCoo
124124
/**
125125
* Search the index for entities matching the given {@link Query query}.
126126
*
127-
* @param <T>
128127
* @param query must not be {@literal null}.
129128
* @param entityType must not be {@literal null}.
130129
* @param <T>
@@ -138,7 +137,6 @@ default <T> Mono<SearchPage<T>> searchForPage(Query query, Class<T> entityType)
138137
/**
139138
* Search the index for entities matching the given {@link Query query}.
140139
*
141-
* @param <T>
142140
* @param query must not be {@literal null}.
143141
* @param entityType must not be {@literal null}.
144142
* @param resultType the projection result type.
@@ -151,7 +149,6 @@ default <T> Mono<SearchPage<T>> searchForPage(Query query, Class<T> entityType)
151149
/**
152150
* Search the index for entities matching the given {@link Query query}.
153151
*
154-
* @param <T>
155152
* @param query must not be {@literal null}.
156153
* @param entityType must not be {@literal null}.
157154
* @param index the target index, must not be {@literal null}
@@ -166,7 +163,6 @@ default <T> Mono<SearchPage<T>> searchForPage(Query query, Class<T> entityType,
166163
/**
167164
* Search the index for entities matching the given {@link Query query}.
168165
*
169-
* @param <T>
170166
* @param query must not be {@literal null}.
171167
* @param entityType must not be {@literal null}.
172168
* @param resultType the projection result type.

src/main/java/org/springframework/data/elasticsearch/core/geo/GeoJson.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.springframework.data.elasticsearch.core.document.Document;
2121

2222
/**
23-
* Interface definition for structures defined in <a href="https://geojson.org/>GeoJSON</a> format. copied from Spring
23+
* Interface definition for structures defined in <a href="https://geojson.org/">GeoJSON</a> format. copied from Spring
2424
* Data Mongodb
2525
*
2626
* @author Christoph Strobl

src/main/java/org/springframework/data/elasticsearch/core/query/UpdateQuery.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* @author Mohsin Husen
3131
* @author Peter-Josef Meisch
3232
* @author Farid Faoudi
33-
* @see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html>docs</a>
33+
* @see <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html">docs</a>
3434
*/
3535
public class UpdateQuery {
3636

0 commit comments

Comments
 (0)