Skip to content

Commit

Permalink
MNT: print
Browse files Browse the repository at this point in the history
Signed-off-by: George Chen <qchea@amazon.com>
  • Loading branch information
chenqi0805 committed Aug 2, 2024
1 parent 658817f commit e9f700f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void run() {
final Map<String, String> pluginNameToJsonSchemaMap = pluginConfigsJsonSchemaConverter.convertPluginConfigsIntoJsonSchemas(
SchemaVersion.DRAFT_2020_12, OptionPreset.PLAIN_JSON, pluginType);
if (pluginNames == null) {
System.out.println(pluginNameToJsonSchemaMap.values());
pluginNameToJsonSchemaMap.values().forEach(System.out::println);
} else {
final Set<String> pluginNamesSet = Set.of(pluginNames.split(","));
final List<String> result = pluginNamesSet.stream().flatMap(name -> {
Expand Down

0 comments on commit e9f700f

Please sign in to comment.