Remove excessive newline

This commit is contained in:
Gunter Labes 2022-02-11 10:54:58 +01:00 committed by GitHub
parent 7cb419f834
commit 933c273b99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2184,8 +2184,7 @@ void server::stats_handler(const std::string& /*issuer_name*/,
{
assert(out != nullptr);
*out << "Number of games = " << games().size() << "\nTotal number of users = " << player_connections_.size()
<< "\n";
*out << "Number of games = " << games().size() << "\nTotal number of users = " << player_connections_.size();
}
void server::metrics_handler(const std::string& /*issuer_name*/,