From 9fdbf84caf2cf66993d893c656668aafe2af6037 Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 16 Jan 2005 01:25:40 +0000 Subject: [PATCH] removed more getInputStream() stuff darcs-hash:20050116012540-5007d-c9175665347fc10a69f42f6dd3b8967b0b0fdadb.gz --- src/org/ibex/js/JS.java | 6 ------ 1 file changed, 6 deletions(-) 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); } -- 1.7.10.4