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:
parent
a01e26a39b
commit
92a9bb2b96
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue