diff options
author | Eugene Tarassov | 2016-08-30 18:09:47 +0000 |
---|---|---|
committer | Eugene Tarassov | 2016-08-30 18:09:47 +0000 |
commit | 2a334481a0f2a884231b22443527f9e018c0fc60 (patch) | |
tree | b1b34220f419a26686eeb85e9dc5934012f908ec /plugins/org.eclipse.tcf.debug | |
parent | 1ec43203b70d9f95a9e3fce3bd03e366815e4ddc (diff) | |
download | org.eclipse.tcf-2a334481a0f2a884231b22443527f9e018c0fc60.tar.gz org.eclipse.tcf-2a334481a0f2a884231b22443527f9e018c0fc60.tar.xz org.eclipse.tcf-2a334481a0f2a884231b22443527f9e018c0fc60.zip |
TCF Core: auto-discovery should not broadcast user-defined peers info
See also: Bug 500522 - DATA_RETENTION_PERIOD value very big
Diffstat (limited to 'plugins/org.eclipse.tcf.debug')
-rw-r--r-- | plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/launch/TCFUserDefPeer.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/launch/TCFUserDefPeer.java b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/launch/TCFUserDefPeer.java index 27b77591e..85f8c8213 100644 --- a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/launch/TCFUserDefPeer.java +++ b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/launch/TCFUserDefPeer.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2016 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -22,7 +22,7 @@ import java.util.Map; import org.eclipse.core.runtime.IPath; import org.eclipse.tcf.internal.debug.Activator; -import org.eclipse.tcf.core.AbstractPeer; +import org.eclipse.tcf.core.UserDefPeer; import org.eclipse.tcf.protocol.IPeer; import org.eclipse.tcf.protocol.Protocol; @@ -32,7 +32,7 @@ import org.eclipse.tcf.protocol.Protocol; * they exist until explicitly deleted by user. * Eclipse plug-in state storage is used to keep the configuration data. */ -public class TCFUserDefPeer extends AbstractPeer { +public class TCFUserDefPeer extends UserDefPeer { public TCFUserDefPeer(Map<String, String> attrs) { super(attrs); |