File tree 1 file changed +3
-2
lines changed
spring-data-jpa/src/main/java/org/springframework/data/jpa/repository
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public interface JpaSpecificationExecutor<T> {
80
80
81
81
/**
82
82
* Checks whether the data store contains elements that match the given {@link Specification}.
83
- *
83
+ *
84
84
* @param spec the {@link Specification} to use for the existence check. Must not be {@literal null}.
85
85
* @return <code>true</code> if the data store contains elements that match the given {@link Specification} otherwise
86
86
* <code>false</code>.
@@ -91,7 +91,8 @@ public interface JpaSpecificationExecutor<T> {
91
91
* Deletes by the {@link Specification} and returns the number of rows deleted.
92
92
*
93
93
* @param spec the {@link Specification} to use for the existence check. Must not be {@literal null}.
94
- * @return the number of entities deleted
94
+ * @return the number of entities deleted.
95
+ * @since 3.0
95
96
*/
96
97
long delete (Specification <T > spec );
97
98
You can’t perform that action at this time.
0 commit comments