Skip to content

Commit 45400c3

Browse files
koraktorschauder
authored andcommitted
DATAJPA-1443 - Remove incorrect JavaDoc in Specifications.
The type parameter for Specifications.and and Specifications.or is not method specific. Therefore removed them from the JavaDoc. Original pull request: #295.
1 parent e3e76e6 commit 45400c3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/org/springframework/data/jpa/domain/Specifications.java

-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ public static <T> Specifications<T> where(@Nullable Specification<T> spec) {
6868
* ANDs the given {@link Specification} to the current one.
6969
*
7070
* @deprecated since 2.0, use {@link Specification#and} instead
71-
* @param <T>
7271
* @param other can be {@literal null}.
7372
* @return
7473
*/
@@ -81,7 +80,6 @@ public Specifications<T> and(@Nullable Specification<T> other) {
8180
* ORs the given specification to the current one.
8281
*
8382
* @deprecated since 2.0, use {@link Specification#or} instead
84-
* @param <T>
8583
* @param other can be {@literal null}.
8684
* @return
8785
*/

0 commit comments

Comments
 (0)