This repository was archived by the owner on Feb 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
spring-ai-mcp-core/src/main/java/org/springframework/ai/mcp/client/util Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 2020
2121/**
2222 * @author Christian Tzolov
23- * @since 1.0.0
2423 */
2524
2625public class Assert {
@@ -48,7 +47,6 @@ public static void notNull(@Nullable Object object, String message) {
4847 * @param text the String to check
4948 * @param message the exception message to use if the assertion fails
5049 * @throws IllegalArgumentException if the text does not contain valid text content
51- * @see StringUtils#hasText
5250 */
5351 public static void hasText (@ Nullable String text , String message ) {
5452 if (!hasText (text )) {
@@ -65,8 +63,6 @@ public static void hasText(@Nullable String text, String message) {
6563 * @param str the {@code String} to check (may be {@code null})
6664 * @return {@code true} if the {@code String} is not {@code null}, its length is
6765 * greater than 0, and it does not contain whitespace only
68- * @see #hasText(CharSequence)
69- * @see #hasLength(String)
7066 * @see Character#isWhitespace
7167 */
7268 public static boolean hasText (@ Nullable String str ) {
You can’t perform that action at this time.
0 commit comments