mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 07:35:24 +02:00
removed obsolete methods
This commit is contained in:
parent
3e14df2bdb
commit
d9a0758560
2 changed files with 0 additions and 12 deletions
|
@ -15,7 +15,6 @@ package org.eclipse.tm.terminal.internal.serial;
|
|||
import javax.comm.SerialPort;
|
||||
|
||||
import org.eclipse.tm.terminal.ISettingsStore;
|
||||
import org.eclipse.tm.terminal.ITerminalConnector;
|
||||
|
||||
public class SerialSettings implements ISerialSettings {
|
||||
protected String fSerialPort;
|
||||
|
@ -152,10 +151,6 @@ public class SerialSettings implements ISerialSettings {
|
|||
strConnected + ")"; //$NON-NLS-1$
|
||||
}
|
||||
|
||||
public ITerminalConnector makeConnector() {
|
||||
return new SerialConnector(this);
|
||||
}
|
||||
|
||||
public void load(ISettingsStore store) {
|
||||
fSerialPort = store.get("SerialPort", fProperties.getDefaultSerialPort());//$NON-NLS-1$
|
||||
fBaudRate = store.get("BaudRate", fProperties.getDefaultBaudRate());//$NON-NLS-1$
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
package org.eclipse.tm.terminal.internal.telnet;
|
||||
|
||||
import org.eclipse.tm.terminal.ISettingsStore;
|
||||
import org.eclipse.tm.terminal.ITerminalConnector;
|
||||
|
||||
public class TelnetSettings implements ITelnetSettings {
|
||||
protected String fHost;
|
||||
|
@ -51,12 +50,6 @@ public class TelnetSettings implements ITelnetSettings {
|
|||
strConnected + ")"; //$NON-NLS-1$
|
||||
}
|
||||
|
||||
|
||||
public ITerminalConnector makeConnector() {
|
||||
return new TelnetConnector(this);
|
||||
}
|
||||
|
||||
|
||||
public void load(ISettingsStore store) {
|
||||
fHost = store.get("Host", fProperties.getDefaultHost());//$NON-NLS-1$
|
||||
fNetworkPort = store.get("NetworkPort", fProperties.getDefaultNetworkPort());//$NON-NLS-1$
|
||||
|
|
Loading…
Add table
Reference in a new issue