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 e64d0a0415
commit 9adad392ed
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@
<feature
id="org.eclipse.tm.terminal.connector.telnet.feature"
label="%featureName"
version="4.6.0.qualifier"
version="4.6.1.qualifier"
provider-name="%providerName"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">

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.1.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);
}