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.
This commit is contained in:
Sebastian Staudt
2018-10-17 06:43:55 +02:00
committed by Jens Schauder
parent a98ebf73ed
commit cca2dfe60a

View File

@@ -68,7 +68,6 @@ public class Specifications<T> implements Specification<T>, Serializable {
* ANDs the given {@link Specification} to the current one.
*
* @deprecated since 2.0, use {@link Specification#and} instead
* @param <T>
* @param other can be {@literal null}.
* @return
*/
@@ -81,7 +80,6 @@ public class Specifications<T> implements Specification<T>, Serializable {
* ORs the given specification to the current one.
*
* @deprecated since 2.0, use {@link Specification#or} instead
* @param <T>
* @param other can be {@literal null}.
* @return
*/