From 3001f738490a0da0e457fefc8753419d3aa48472 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Wed, 15 Jan 2025 10:41:54 +0100 Subject: [PATCH] Polishing. Fix since versions. See: #3521 Original Pull Request: #3578 --- .../data/jpa/repository/JpaSpecificationExecutor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/JpaSpecificationExecutor.java b/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/JpaSpecificationExecutor.java index ec32ec4e77..2f293cc836 100644 --- a/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/JpaSpecificationExecutor.java +++ b/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/JpaSpecificationExecutor.java @@ -155,7 +155,7 @@ default boolean exists(PredicateSpecification spec) { * * @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 spec); @@ -194,7 +194,7 @@ default long delete(PredicateSpecification spec) { * @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 R findBy(PredicateSpecification spec, Function, R> queryFunction) {