From 92a9bb2b965fb401543aedf71ea7707da55e1a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20B=C3=BCscher?= Date: Fri, 13 Jul 2018 14:34:02 +0200 Subject: [PATCH] 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. --- .../function/scalar/string/StringFunctionUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/expression/function/scalar/string/StringFunctionUtils.java b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/expression/function/scalar/string/StringFunctionUtils.java index 75db52ed099..cef826d37ed 100644 --- a/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/expression/function/scalar/string/StringFunctionUtils.java +++ b/x-pack/plugin/sql/src/main/java/org/elasticsearch/xpack/sql/expression/function/scalar/string/StringFunctionUtils.java @@ -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