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:
committed by
Jens Schauder
parent
a98ebf73ed
commit
cca2dfe60a
@@ -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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user