Skip to content

Commit

Permalink
removing immutable
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Palis <[email protected]>
  • Loading branch information
joshpalis committed Mar 22, 2024
1 parent a5f0bdd commit df8c8c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ protected List<String> catPlugins() throws IOException {
"_cat/plugins?s=component&h=name,component,version,description&format=json",
null,
"",
ImmutableList.of(new BasicHeader(HttpHeaders.USER_AGENT, ""))
List.of(new BasicHeader(HttpHeaders.USER_AGENT, ""))
);
List<Object> pluginsList = JsonXContent.jsonXContent.createParser(
NamedXContentRegistry.EMPTY,
Expand Down

0 comments on commit df8c8c6

Please sign in to comment.