Remove TODO comment. Remove printing of dependencies when running locally.
diff --git a/pkg/cmd/local_run.go b/pkg/cmd/local_run.go
index 654ffce..4a68877 100644
--- a/pkg/cmd/local_run.go
+++ b/pkg/cmd/local_run.go
@@ -96,12 +96,6 @@
 		return err
 	}
 
-	// Print dependencies.
-	err = outputDependencies(dependencies, "")
-	if err != nil {
-		return err
-	}
-
 	// Run the integration locally.
 	err = RunLocalIntegration(command.PropertyFiles, dependencies, args)
 	if err != nil {
diff --git a/pkg/cmd/util_commands.go b/pkg/cmd/util_commands.go
index 5ec0a34..b44243a 100644
--- a/pkg/cmd/util_commands.go
+++ b/pkg/cmd/util_commands.go
@@ -82,9 +82,7 @@
 	cmd := exec.CommandContext(ctx, javaCmd, args...)
 	cmd.Stderr = os.Stderr
 	cmd.Stdout = os.Stdout
-	// cmd.Dir = ctx.Path
 
-	// TODO: for debug purposes, remove when done.
 	fmt.Printf("executing: %s", strings.Join(cmd.Args, " "))
 
 	// Add directory where the properties file resides.