This commit is contained in:
oujunhui
2020-04-09 12:33:33 +08:00
parent 6df2d64ddb
commit c126ca0392
29 changed files with 61 additions and 55 deletions

View File

@@ -36,7 +36,7 @@ import java.util.regex.Pattern;
* <p/>
* <pre>
* Validate.isTrue(i &gt; 0, "The value must be greater than zero: %d", i);
* Validate.notNull(surname, "The surname must not be %s", null);
* Validate.NonNull(surname, "The surname must not be %s", null);
* </pre>
* <p/>
* <p>#ThreadSafe#</p>
@@ -182,7 +182,7 @@ public class Validate {
}
}
// notNull
// NonNull
//---------------------------------------------------------------------------------
/**