From cca2dfe60ae673b6c9190c059f85989f1629dd61 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 f8b9220fb..1d88bf4f4 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 */