Skip to content

Commit 597f929

Browse files
committed
Polishing.
Fix since versions. See: #3521 Original Pull Request: #3578
1 parent 017257b commit 597f929

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ default boolean exists(PredicateSpecification<T> spec) {
182182
*
183183
* @param spec the {@link UpdateSpecification} to use for the update query must not be {@literal null}.
184184
* @return the number of entities deleted.
185-
* @since xxx
185+
* @since 4.0
186186
*/
187187
long update(UpdateSpecification<T> spec);
188188

@@ -221,7 +221,7 @@ default long delete(PredicateSpecification<T> spec) {
221221
* @param spec must not be null.
222222
* @param queryFunction the query function defining projection, sorting, and the result type
223223
* @return all entities matching the given Example.
224-
* @since xxx
224+
* @since 4.0
225225
*/
226226
default <S extends T, R> R findBy(PredicateSpecification<T> spec,
227227
Function<FluentQuery.FetchableFluentQuery<S>, R> queryFunction) {

0 commit comments

Comments
 (0)