From 45400c33a8924ec0d6f9304067d88fedfc7805ef Mon Sep 17 00:00:00 2001 From: Sebastian Staudt Date: Wed, 17 Oct 2018 06:43:55 +0200 Subject: [PATCH] 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. --- .../org/springframework/data/jpa/domain/Specifications.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/org/springframework/data/jpa/domain/Specifications.java b/src/main/java/org/springframework/data/jpa/domain/Specifications.java index 9b8c341a3..ee6a45e85 100644 --- a/src/main/java/org/springframework/data/jpa/domain/Specifications.java +++ b/src/main/java/org/springframework/data/jpa/domain/Specifications.java @@ -68,7 +68,6 @@ public class Specifications implements Specification, Serializable { * ANDs the given {@link Specification} to the current one. * * @deprecated since 2.0, use {@link Specification#and} instead - * @param * @param other can be {@literal null}. * @return */ @@ -81,7 +80,6 @@ public class Specifications implements Specification, Serializable { * ORs the given specification to the current one. * * @deprecated since 2.0, use {@link Specification#or} instead - * @param * @param other can be {@literal null}. * @return */