removed more getInputStream() stuff
authoradam <adam@megacz.com>
Sun, 16 Jan 2005 01:25:40 +0000 (01:25 +0000)
committeradam <adam@megacz.com>
Sun, 16 Jan 2005 01:25:40 +0000 (01:25 +0000)
darcs-hash:20050116012540-5007d-c9175665347fc10a69f42f6dd3b8967b0b0fdadb.gz

src/org/ibex/js/JS.java

index 4c69a05..782b445 100644 (file)
@@ -73,8 +73,6 @@ public interface JS extends Pausable {
         public JS get(JS key) throws JSExn { return null; }
         public void put(JS key, JS val) throws JSExn {
             throw new JSExn("'" + key + "' is read only on class ["+ getClass().getName() +"]"); }
-        public InputStream getInputStream() throws IOException, JSExn { throw new JSExn(
-            "object has not associated stream, class ["+ getClass().getName() +"]"); }
 
         public JS call(JS method, JS[] args) throws JSExn {
             if (method == null) throw new JSExn( "object cannot be called, class ["+ getClass().getName() +"]");
@@ -112,10 +110,6 @@ public interface JS extends Pausable {
         public Enumeration keys() throws JSExn { return clonee.keys(); }
         public JS get(JS k) throws JSExn { return clonee.get(k); }
         public void put(JS k, JS v) throws JSExn { clonee.put(k, v); }
-
-        // FIMXE: cloning Fountains...
-        //public InputStream getInputStream() throws IOException, JSExn { return clonee.getInputStream(); }
-
         public JS call(JS m, JS[] a) throws JSExn { return clonee.call(m, a); }
         public String[] getFormalArgs() { return clonee.getFormalArgs(); }
         public JS putAndTriggerTraps(JS k, JS v) throws JSExn { return clonee.putAndTriggerTraps(k, v); }