File tree Expand file tree Collapse file tree
javav2/example_code/controltower/src/main/java/com/example/controltower/scenario Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments