From 7d62fd5106c4a8913fa1f83dba2469dc066a4289 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Fri, 29 May 2020 08:14:56 -0400 Subject: [PATCH] remove debug code --- unittest/force-styles/test_config_reader.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/unittest/force-styles/test_config_reader.cpp b/unittest/force-styles/test_config_reader.cpp index c291ad2928..95575f300e 100644 --- a/unittest/force-styles/test_config_reader.cpp +++ b/unittest/force-styles/test_config_reader.cpp @@ -216,9 +216,7 @@ void TestConfigReader::equilibrium(const yaml_event_t & event) { while (found != std::string::npos) { double value = atof(vals.substr(0,found).c_str()); config.equilibrium.push_back(value); - printf("vals=%s ->",vals.c_str()); vals = vals.substr(found+1); - printf("%s\n",vals.c_str()); found = vals.find_first_of(" \t"); } }