Re-instate link in StringFunctionUtils javadocs

The previous errors in compileJava were not cause by the brackets but my the
content of the @link section. Corrected this so its a working javadoc link again.
This commit is contained in:
Christoph Büscher 2018-07-13 14:34:02 +02:00
parent a01e26a39b
commit 92a9bb2b96
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ package org.elasticsearch.xpack.sql.expression.function.scalar.string;
abstract class StringFunctionUtils {
/**
* Trims the trailing whitespace characters from the given String. Uses @link java.lang.Character.isWhitespace(char)
* Trims the trailing whitespace characters from the given String. Uses {@link Character#isWhitespace(char)}
* to determine if a character is whitespace or not.
*
* @param s the original String
@ -27,7 +27,7 @@ abstract class StringFunctionUtils {
}
/**
* Trims the leading whitespace characters from the given String. Uses @link java.lang.Character.isWhitespace(char)
* Trims the leading whitespace characters from the given String. Uses {@link Character#isWhitespace(char)}
* to determine if a character is whitespace or not.
*
* @param s the original String