File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
cloudinary-core/src/main/java/com/cloudinary/utils Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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 */
You can’t perform that action at this time.
0 commit comments