removed more getInputStream() stuff
[org.ibex.js.git] / 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); }