mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 10:54:51 +00:00
Quick fix for closing connection.
This commit is contained in:
@@ -34,7 +34,9 @@ public class NetworkingClientManager implements org.toop.framework.networking.in
|
|||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
|
|
||||||
if (networkClients.get(id) != null) {
|
NetworkingClient qClient = networkClients.get(id);
|
||||||
|
if (qClient != null) {
|
||||||
|
qClient.closeConnection();
|
||||||
networkClients.remove(id);
|
networkClients.remove(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user