File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
server/src/main/java/org/elasticsearch/cluster/metadata Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1313import org .elasticsearch .TransportVersions ;
1414import org .elasticsearch .cluster .AbstractNamedDiffable ;
1515import org .elasticsearch .cluster .NamedDiff ;
16- import org .elasticsearch .common .collect .ImmutableOpenMap ;
1716import org .elasticsearch .common .collect .Iterators ;
1817import org .elasticsearch .common .io .stream .StreamInput ;
1918import org .elasticsearch .common .io .stream .StreamOutput ;
@@ -91,7 +90,9 @@ public void writeTo(StreamOutput out) throws IOException {
9190
9291 @ Override
9392 public Iterator <? extends ToXContent > toXContentChunked (ToXContent .Params params ) {
94- return Iterators .concat (ChunkedToXContentHelper .chunk ((builder , bParams ) -> builder .field (LOGS_ENABLED .getPreferredName (), logsEnabled )));
93+ return Iterators .concat (
94+ ChunkedToXContentHelper .chunk ((builder , bParams ) -> builder .field (LOGS_ENABLED .getPreferredName (), logsEnabled ))
95+ );
9596 }
9697
9798 @ Override
You can’t perform that action at this time.
0 commit comments