Skip to content

Commit f03bda6

Browse files
committed
chore: generate bin/generate-samples.sh bin/configs/java-*
1 parent 2d3c72f commit f03bda6

29 files changed

Lines changed: 29 additions & 29 deletions

File tree

samples/client/petstore/java-helidon-client/v3/se/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public class Example {
261261
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
262262

263263
PetApi apiInstance = new PetApi(defaultClient);
264-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
264+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
265265
try {
266266
Set<Pet> result = apiInstance.findPetsByTags(tags);
267267
System.out.println(result);

samples/client/petstore/java-helidon-client/v4/se/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public class Example {
261261
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
262262

263263
PetApi apiInstance = new PetApi(defaultClient);
264-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
264+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
265265
try {
266266
Set<Pet> result = apiInstance.findPetsByTags(tags);
267267
System.out.println(result);

samples/client/petstore/java/apache-httpclient/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public class Example {
261261
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
262262

263263
PetApi apiInstance = new PetApi(defaultClient);
264-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
264+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
265265
try {
266266
Set<Pet> result = apiInstance.findPetsByTags(tags);
267267
System.out.println(result);

samples/client/petstore/java/google-api-client/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public class Example {
257257
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
258258

259259
PetApi apiInstance = new PetApi(defaultClient);
260-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
260+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
261261
try {
262262
Set<Pet> result = apiInstance.findPetsByTags(tags);
263263
System.out.println(result);

samples/client/petstore/java/jersey2-java8-localdatetime/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ public class Example {
254254
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
255255

256256
PetApi apiInstance = new PetApi(defaultClient);
257-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
257+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
258258
try {
259259
Set<Pet> result = apiInstance.findPetsByTags(tags);
260260
System.out.println(result);

samples/client/petstore/java/jersey2-java8/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ public class Example {
254254
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
255255

256256
PetApi apiInstance = new PetApi(defaultClient);
257-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
257+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
258258
try {
259259
Set<Pet> result = apiInstance.findPetsByTags(tags);
260260
System.out.println(result);

samples/client/petstore/java/microprofile-rest-client-3.0-jackson/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public class Example {
263263
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
264264

265265
PetApi apiInstance = new PetApi(defaultClient);
266-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
266+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
267267
try {
268268
Set<Pet> result = apiInstance.findPetsByTags(tags);
269269
System.out.println(result);

samples/client/petstore/java/microprofile-rest-client-3.0/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public class Example {
263263
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
264264

265265
PetApi apiInstance = new PetApi(defaultClient);
266-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
266+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
267267
try {
268268
Set<Pet> result = apiInstance.findPetsByTags(tags);
269269
System.out.println(result);

samples/client/petstore/java/microprofile-rest-client/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public class Example {
263263
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
264264

265265
PetApi apiInstance = new PetApi(defaultClient);
266-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
266+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
267267
try {
268268
Set<Pet> result = apiInstance.findPetsByTags(tags);
269269
System.out.println(result);

samples/client/petstore/java/okhttp-gson-dynamicOperations/docs/PetApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public class Example {
243243
petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
244244

245245
PetApi apiInstance = new PetApi(defaultClient);
246-
Set<String> tags = new LinkedHashSet<>(); // Set<String> | Tags to filter by
246+
Set<String> tags = Arrays.asList(); // Set<String> | Tags to filter by
247247
try {
248248
Set<Pet> result = apiInstance.findPetsByTags(tags);
249249
System.out.println(result);

0 commit comments

Comments
 (0)