docs: 删除关于 ValidTools 的描述

This commit is contained in:
zhouxy108 2025-05-28 10:33:12 +08:00
parent 41ccb652d4
commit 08ebfc7d4b
2 changed files with 1 additions and 8 deletions

View File

@ -21,7 +21,6 @@ package xyz.zhouxy.plusone.validator;
*
* @author <a href="https://gitee.com/zhouxy108">ZhouXY</a>
*
* @see ValidTools
* @see BaseValidator
*/
public interface IValidateRequired {

View File

@ -35,22 +35,16 @@ import java.util.function.Supplier;
* </pre>
*
* <p>
* 然后通过校验器的 {@link #validate} 方法
* {@link ValidTools#validate(Object, Validator)} 对指定对象进行校验
* 然后通过校验器的 {@link #validate} 方法对指定对象进行校验
* </p>
*
* <pre>
* validator.validate(666);
* </pre>
*
* <pre>
* ValidTools.validate(255, validator);
* </pre>
* </p>
*
* @author <a href="https://gitee.com/zhouxy108">ZhouXY</a>
* @see IValidateRequired
* @see ValidTools
* @see BaseValidator
*/
public final class Validator<T> extends BaseValidator<T> {