mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 06:02:11 +02:00
Bug 561054: Save host and related settings for Telnet connections
Change-Id: I99af2f77135086f5a5eb0fc0647d87ad4f749482
This commit is contained in:
parent
e097d60932
commit
cef0a80f91
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.tm.terminal.connector.telnet;singleton:=true
|
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-Activator: org.eclipse.tm.terminal.connector.telnet.activator.UIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
||||||
|
|
|
@ -165,7 +165,7 @@ public class TelnetWizardConfigurationPanel extends AbstractExtendedConfiguratio
|
||||||
String host = getHostFromSettings();
|
String host = getHostFromSettings();
|
||||||
if (host != null && host.length() != 0) {
|
if (host != null && host.length() != 0) {
|
||||||
Map<String, String> hostSettings = hostSettingsMap.get(host);
|
Map<String, String> hostSettings = hostSettingsMap.get(host);
|
||||||
if (hostSettings == null && !add) {
|
if (hostSettings == null && add) {
|
||||||
hostSettings = new HashMap<>();
|
hostSettings = new HashMap<>();
|
||||||
hostSettingsMap.put(host, hostSettings);
|
hostSettingsMap.put(host, hostSettings);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue