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
e64d0a0415
commit
9adad392ed
3 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@
|
||||||
<feature
|
<feature
|
||||||
id="org.eclipse.tm.terminal.connector.telnet.feature"
|
id="org.eclipse.tm.terminal.connector.telnet.feature"
|
||||||
label="%featureName"
|
label="%featureName"
|
||||||
version="4.6.0.qualifier"
|
version="4.6.1.qualifier"
|
||||||
provider-name="%providerName"
|
provider-name="%providerName"
|
||||||
license-feature="org.eclipse.license"
|
license-feature="org.eclipse.license"
|
||||||
license-feature-version="0.0.0">
|
license-feature-version="0.0.0">
|
||||||
|
|
|
@ -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.1.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