Skip to content

Commit d89d953

Browse files
committed
udpaed code tp address comments
1 parent 21eca0e commit d89d953

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

javav2/example_code/controltower/src/main/java/com/example/controltower/scenario/ControlTowerActions.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,6 @@ public CompletableFuture<List<BaselineSummary>> listBaselinesAsync() {
273273
return paginator.subscribe(response -> {
274274
if (response.baselines() != null && !response.baselines().isEmpty()) {
275275
response.baselines().forEach(baseline -> {
276-
System.out.println("Baseline name: " + baseline.name());
277276
baselines.add(baseline);
278277
});
279278
} else {
@@ -659,7 +658,6 @@ public CompletableFuture<List<EnabledControlSummary>> listEnabledControlsAsync(S
659658
return paginator.subscribe(response -> {
660659
if (response.enabledControls() != null && !response.enabledControls().isEmpty()) {
661660
response.enabledControls().forEach(control -> {
662-
System.out.println("Enabled control: {}" + control.controlIdentifier());
663661
enabledControls.add(control);
664662
});
665663
} else {

0 commit comments

Comments
 (0)