Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit a553797

Browse files
committed
Fix javadoc
1 parent e9bafe9 commit a553797

File tree

1 file changed

+0
-4
lines changed
  • spring-ai-mcp-core/src/main/java/org/springframework/ai/mcp/client/util

1 file changed

+0
-4
lines changed

spring-ai-mcp-core/src/main/java/org/springframework/ai/mcp/client/util/Assert.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
/**
2222
* @author Christian Tzolov
23-
* @since 1.0.0
2423
*/
2524

2625
public 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) {

0 commit comments

Comments
 (0)