1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Bug 561054: Save host and related settings for Telnet connections

Change-Id: I99af2f77135086f5a5eb0fc0647d87ad4f749482
This commit is contained in:
Jonah Graham 2020-05-01 10:52:48 -04:00
parent e097d60932
commit cef0a80f91
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.tm.terminal.connector.telnet;singleton:=true
Bundle-Version: 4.6.0.qualifier
Bundle-Version: 4.6.100.qualifier
Bundle-Activator: org.eclipse.tm.terminal.connector.telnet.activator.UIPlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",

View file

@ -165,7 +165,7 @@ public class TelnetWizardConfigurationPanel extends AbstractExtendedConfiguratio
String host = getHostFromSettings();
if (host != null && host.length() != 0) {
Map<String, String> hostSettings = hostSettingsMap.get(host);
if (hostSettings == null && !add) {
if (hostSettings == null && add) {
hostSettings = new HashMap<>();
hostSettingsMap.put(host, hostSettings);
}