Removed an another stray print.

This commit is contained in:
Relintai 2021-11-19 22:32:15 +01:00
parent 5f17d90676
commit cefea40d45

View File

@ -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() {