Skip to content

Commit 687577a

Browse files
committed
Fix javadoc warning in Strings for missing parameter description
Fixes a parameter in `Strings` that had a javadoc annotation but was missing the description, causing warnings in the build.
1 parent a813492 commit 687577a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/common/Strings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ public static String toString(ToXContent toXContent) {
757757

758758
/**
759759
* Returns a string representation of the builder (only applicable for text based xcontent).
760-
* @param xContentBuilder
760+
* @param xContentBuilder builder containing an object to converted to a string
761761
*/
762762
public static String toString(XContentBuilder xContentBuilder) {
763763
return BytesReference.bytes(xContentBuilder).utf8ToString();

0 commit comments

Comments
 (0)