Fix reference to XContentBuilder.string() (#31337)
In 6.3 this was moved to `Strings.toString(XContentBuilder)` as part of the XContent extraction. This commit fixes the docs to reference the new method. Resolves #31326
This commit is contained in:
parent
2a8381d3fa
commit
4ad334f8e0
|
@ -99,11 +99,13 @@ Note that you can also add arrays with `startArray(String)` and
|
||||||
other XContentBuilder objects.
|
other XContentBuilder objects.
|
||||||
|
|
||||||
If you need to see the generated JSON content, you can use the
|
If you need to see the generated JSON content, you can use the
|
||||||
`string()` method.
|
`Strings.toString()` method.
|
||||||
|
|
||||||
[source,java]
|
[source,java]
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
String json = builder.string();
|
import org.elasticsearch.common.Strings;
|
||||||
|
|
||||||
|
String json = Strings.toString(builder);
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue