1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 07:35:24 +02:00

[227905] prevent double invocations of finished in ConncetionEstablisher

This commit is contained in:
David McKnight 2008-04-21 14:01:36 +00:00
parent 04570d74c6
commit f5fbe5ec96

View file

@ -13,6 +13,7 @@
*
* Contributors:
* David McKnight (IBM) - [225507][api][breaking] RSE dstore API leaks non-API types
* Noriaki Takatsu (IBM) - [227905] prevent double invocations of finished in ConncetionEstablisher
*******************************************************************************/
package org.eclipse.dstore.core.server;
@ -74,6 +75,7 @@ public class ServerReceiver extends Receiver
public void finish()
{
_dataStore.setConnected(false);
super.finish();
_connection.finished(this);
}