We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3c72f commit 726f6c6Copy full SHA for 726f6c6
1 file changed
samples/client/petstore/java/webclient-springBoot4-jackson3/docs/PetApi.md
@@ -261,7 +261,7 @@ public class Example {
261
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
262
263
PetApi apiInstance = new PetApi(defaultClient);
264
- Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
+ Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
265
try {
266
Set<Pet> result = apiInstance.findPetsByTags(tags);
267
System.out.println(result);
0 commit comments