Skip to content

Commit 7a764d8

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 f9ae04c commit 7a764d8

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)