From cefea40d455100c6bbdab4cf3d0e7316d8d40e1d Mon Sep 17 00:00:00 2001 From: Relintai Date: Fri, 19 Nov 2021 22:32:15 +0100 Subject: [PATCH] Removed an another stray print. --- core/settings.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/settings.cpp b/core/settings.cpp index 5e34267..09405b0 100644 --- a/core/settings.cpp +++ b/core/settings.cpp @@ -89,14 +89,11 @@ void Settings::parse_ini_file(const String &path) { continue; } - s.print(); - String k = s.substr_index(0, eindex - 1); String v = s.substr_index(eindex + 1, s.size() - 1); _data[k] = v; } - } Settings *Settings::get_singleton() {