Skip to content

Commit 3001f73

Browse files
committed
Polishing.
Fix since versions. See: #3521 Original Pull Request: #3578
1 parent b1699a0 commit 3001f73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/JpaSpecificationExecutor.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ default boolean exists(PredicateSpecification<T> spec) {
155155
*
156156
* @param spec the {@link UpdateSpecification} to use for the update query must not be {@literal null}.
157157
* @return the number of entities deleted.
158-
* @since xxx
158+
* @since 4.0
159159
*/
160160
long update(UpdateSpecification<T> spec);
161161

@@ -194,7 +194,7 @@ default long delete(PredicateSpecification<T> spec) {
194194
* @param spec must not be null.
195195
* @param queryFunction the query function defining projection, sorting, and the result type
196196
* @return all entities matching the given Example.
197-
* @since xxx
197+
* @since 4.0
198198
*/
199199
default <S extends T, R> R findBy(PredicateSpecification<T> spec,
200200
Function<FluentQuery.FetchableFluentQuery<S>, R> queryFunction) {

0 commit comments

Comments
 (0)