Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/SystemOutputListener.java')
-rw-r--r--plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/SystemOutputListener.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/SystemOutputListener.java b/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/SystemOutputListener.java
deleted file mode 100644
index f84a633faaf..00000000000
--- a/plugins/org.eclipse.osee.ote.io/src/org/eclipse/osee/ote/io/SystemOutputListener.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package org.eclipse.osee.ote.io;
-
-import java.io.IOException;
-
-public interface SystemOutputListener {
-
- public void close() throws IOException;
-
- public void flush() throws IOException;
-
- public void write(byte[] b, int off, int len) throws IOException;
-
- public void write(byte[] b) throws IOException;
-
-}

Back to the top