Polishing.

Fix since versions.

See: #3521
Original Pull Request: #3578
This commit is contained in:
Mark Paluch
2025-01-15 10:41:54 +01:00
parent 63e09c926b
commit 65d0c51d4d

View File

@@ -182,7 +182,7 @@ public interface JpaSpecificationExecutor<T> {
*
* @param spec the {@link UpdateSpecification} to use for the update query must not be {@literal null}.
* @return the number of entities deleted.
* @since xxx
* @since 4.0
*/
long update(UpdateSpecification<T> spec);
@@ -221,7 +221,7 @@ public interface JpaSpecificationExecutor<T> {
* @param spec must not be null.
* @param queryFunction the query function defining projection, sorting, and the result type
* @return all entities matching the given Example.
* @since xxx
* @since 4.0
*/
default <S extends T, R> R findBy(PredicateSpecification<T> spec,
Function<FluentQuery.FetchableFluentQuery<S>, R> queryFunction) {