Remove excessive newline

This commit is contained in:
Gunter Labes 2022-02-11 10:56:09 +01:00 committed by GitHub
parent e348e6da6b
commit bd209189a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2187,8 +2187,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*/,