Revert "AndroidX"

This reverts commit c126ca0392.
This commit is contained in:
oujunhui
2020-04-09 12:34:55 +08:00
parent c126ca0392
commit c8b351c82e
29 changed files with 55 additions and 61 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.NonNull(surname, "The surname must not be %s", null);
* Validate.notNull(surname, "The surname must not be %s", null);
* </pre>
* <p/>
* <p>#ThreadSafe#</p>
@@ -182,7 +182,7 @@ public class Validate {
}
}
// NonNull
// notNull
//---------------------------------------------------------------------------------
/**