Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/AbstractConnector.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/AbstractConnector.java b/plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/AbstractConnector.java
index 0b781f3866..5f5c784106 100644
--- a/plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/AbstractConnector.java
+++ b/plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/AbstractConnector.java
@@ -85,17 +85,17 @@ public abstract class AbstractConnector extends LifecycleImpl implements Connect
private ConnectorState connectorState = ConnectorState.DISCONNECTED;
- private NotifierImpl notifier = new NotifierImpl();
+ private transient NotifierImpl notifier = new NotifierImpl();
/**
* Is registered with each {@link Channel} of this {@link Connector}.
* <p>
*/
- private LifecycleListener channelLifecycleListener = new ChannelLifecycleListener();
+ private transient LifecycleListener channelLifecycleListener = new ChannelLifecycleListener();
- private CountDownLatch finishedConnecting;
+ private transient CountDownLatch finishedConnecting;
- private CountDownLatch finishedNegotiating;
+ private transient CountDownLatch finishedNegotiating;
public AbstractConnector()
{

Back to the top