Skip to content

Commit

Permalink
remove unneeded IStreamListener manipulation methods
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Mar 8, 2014
1 parent db179a4 commit 1b5a3f2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import org.jboss.tools.aesh.core.ansi.StyleRange;
import org.jboss.tools.aesh.core.internal.io.AeshInputStream;
import org.jboss.tools.aesh.core.internal.io.ControlSequenceOutputStream;
import org.jboss.tools.aesh.core.io.StreamListener;

public abstract class AbstractConsole implements AeshConsole {

Expand Down Expand Up @@ -119,9 +118,4 @@ private void handleOutput(String string) {
}
}

public void addStdOutListener(StreamListener listener) {}
public void removeStdOutListener(StreamListener listener) {}
public void addStdErrListener(StreamListener listener) {}
public void removeStdErrListener(StreamListener listener) {}

}
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.jboss.tools.aesh.core.console;

import org.jboss.tools.aesh.core.ansi.Document;
import org.jboss.tools.aesh.core.io.StreamListener;

public interface AeshConsole {

Expand All @@ -12,9 +11,4 @@ public interface AeshConsole {
void connect(Document document);
void disconnect();

void addStdOutListener(StreamListener listener);
void removeStdOutListener(StreamListener listener);
void addStdErrListener(StreamListener listener);
void removeStdErrListener(StreamListener listener);

}

0 comments on commit 1b5a3f2

Please sign in to comment.