X-Git-Url: http://git.megacz.com/?p=org.ibex.js.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fjs%2FJS.java;h=782b445f20a595c1f87faca1ab2f1a79b56655a6;hp=4c69a055642b4f66132b3852d0b332d131e48d80;hb=9fdbf84caf2cf66993d893c656668aafe2af6037;hpb=636483270e658488f7d7790e3d31f3e046748d3a diff --git a/src/org/ibex/js/JS.java b/src/org/ibex/js/JS.java index 4c69a05..782b445 100644 --- a/src/org/ibex/js/JS.java +++ b/src/org/ibex/js/JS.java @@ -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); }