File tree 1 file changed +4
-6
lines changed
src/main/java/org/springframework/data/repository/query
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -184,9 +184,8 @@ default Window<T> scroll(ScrollPosition scrollPosition) {
184
184
* Get a page of matching elements for {@link Pageable}.
185
185
*
186
186
* @param pageable the pageable to request a paged result, can be {@link Pageable#unpaged()}, must not be
187
- * {@literal null}. The given {@link Pageable} will override any previously specified {@link Sort sort} if
188
- * the {@link Sort} object is not {@link Sort#isUnsorted()}. Any potentially specified {@link #limit(int)}
189
- * will be overridden by {@link Pageable#getPageSize()}.
187
+ * {@literal null}. The given {@link Pageable} will override any previously specified {@link Sort sort}.
188
+ * Any potentially specified {@link #limit(int)} will be overridden by {@link Pageable#getPageSize()}.
190
189
* @return
191
190
*/
192
191
Page <T > page (Pageable pageable );
@@ -293,9 +292,8 @@ default Mono<Window<T>> scroll(ScrollPosition scrollPosition) {
293
292
* Get a page of matching elements for {@link Pageable}.
294
293
*
295
294
* @param pageable the pageable to request a paged result, can be {@link Pageable#unpaged()}, must not be
296
- * {@literal null}. The given {@link Pageable} will override any previously specified {@link Sort sort} if
297
- * the {@link Sort} object is not {@link Sort#isUnsorted()}. Any potentially specified {@link #limit(int)}
298
- * will be overridden by {@link Pageable#getPageSize()}.
295
+ * {@literal null}. The given {@link Pageable} will override any previously specified {@link Sort sort}.
296
+ * Any potentially specified {@link #limit(int)} will be overridden by {@link Pageable#getPageSize()}.
299
297
* @return
300
298
*/
301
299
Mono <Page <T >> page (Pageable pageable );
You can’t perform that action at this time.
0 commit comments