Issue #6140 - SelectorManager total keys.

Removed toString() override that was not calling super, to restore printing the total number of keys in dumps.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
Simone Bordet 2024-02-20 10:21:35 +01:00
parent 08174a3042
commit 624ee584bd
No known key found for this signature in database
GPG Key ID: 1677D141BCF3584D
1 changed files with 0 additions and 6 deletions

View File

@ -634,11 +634,5 @@ public class ServerConnector extends AbstractNetworkConnector
onEndPointClosed(endpoint);
super.endPointClosed(endpoint);
}
@Override
public String toString()
{
return String.format("SelectorManager@%s", ServerConnector.this);
}
}
}