From 284f6b2330c9e4b6bb6bfdec10f002a361983dd3 Mon Sep 17 00:00:00 2001 From: Nathan Date: Fri, 14 Mar 2025 16:16:55 -0500 Subject: [PATCH] training wheels off --- src/App.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/App.cpp b/src/App.cpp index 9c3fc00..1c8cf06 100644 --- a/src/App.cpp +++ b/src/App.cpp @@ -39,10 +39,7 @@ void App::run() { while (!done && !modules.empty()) { for(auto it = modules.begin(); it != modules.end(); it++) { - std::cout << "Running module: " << (*it)->getName() << std::endl; (*it)->run(); - std::cout << "Module ran successfully\n"; - end(); } }