From f4c8eb6d885b54c822ee7ed9f0447d37c416c72b Mon Sep 17 00:00:00 2001 From: Akkadius Date: Tue, 20 Jan 2015 02:09:36 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Unable to clear groups: --- common/database.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/common/database.cpp b/common/database.cpp index eb7c408a5..0aeeca9db 100644 --- a/common/database.cpp +++ b/common/database.cpp @@ -3166,10 +3166,6 @@ void Database::ClearAllGroups(void) { std::string query("DELETE FROM `group_id`"); QueryDatabase(query); - - if (!results.Success()) - std::cout << "Unable to clear groups: " << results.ErrorMessage() << std::endl; - return; }