Skip to content

Commit 89b86be

Browse files
author
Amir Tocker
committed
Fix javadoc errors
1 parent 3f22d01 commit 89b86be

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

cloudinary-core/src/main/java/com/cloudinary/utils/StringUtils.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,11 @@ public static byte[] hexStringToByteArray(String s) {
121121
}
122122

123123
/**
124-
* {@see HtmlEscape.escapeHtml}
124+
* Method for html escaping a String
125+
*
126+
* @param input The String to escape
127+
* @return The escaped String
128+
* @see HtmlEscape#escapeTextArea(String)
125129
*/
126130
public static String escapeHtml(String input) {
127131
return HtmlEscape.escapeTextArea(input);
@@ -157,7 +161,7 @@ public static boolean isEmpty(String input) {
157161

158162
/**
159163
* Verify that the input is an empty string or contains only whitespace characters.<br>
160-
* {@see Character.isWhitespace}
164+
* see {@link Character#isWhitespace(char)}
161165
* @param input a string
162166
* @return true if input is an empty string or contains only whitespace characters
163167
*/

0 commit comments

Comments
 (0)