1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 22:35:43 +02:00

ITerminalConnector removed unused method getInputStream

This commit is contained in:
Michael Scharf 2007-02-08 15:45:35 +00:00
parent 6c0193f6e5
commit f69f60511c
2 changed files with 0 additions and 16 deletions

View file

@ -11,7 +11,6 @@
*******************************************************************************/
package org.eclipse.tm.terminal;
import java.io.InputStream;
import java.io.OutputStream;
@ -63,11 +62,6 @@ public interface ITerminalConnector {
*/
OutputStream getOutputStream();
/**
* @return a stream to write to the remote site.
*/
InputStream getInputStream();
/**
* Load the state of this connection. Is typically called before
* {@link #connect(ITerminalControl)}.

View file

@ -17,7 +17,6 @@
package org.eclipse.tm.terminal.internal.control;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.SocketException;
@ -452,15 +451,6 @@ public class TerminalControl implements ITerminalControlForText, ITerminalContro
}
/* (non-Javadoc)
* @see org.eclipse.tm.terminal.ITerminalControl#getInputStream()
*/
public InputStream getInputStream() {
if(fConnector!=null)
return fConnector.getInputStream();
return null;
}
public OutputStream getOutputStream() {
if(fConnector!=null)
return fConnector.getOutputStream();