removed obsolete Stream.put()
authoradam <adam@megacz.com>
Sat, 15 Jan 2005 10:09:03 +0000 (10:09 +0000)
committeradam <adam@megacz.com>
Sat, 15 Jan 2005 10:09:03 +0000 (10:09 +0000)
darcs-hash:20050115100903-5007d-1c76bf50b524b7ac532239aa3aaff6263803eeb6.gz

src/org/ibex/core/Stream.java

index 247540a..4190748 100644 (file)
@@ -25,7 +25,6 @@ public abstract class Stream extends JS.Obj implements JS.Cloneable {
     public static class NotCacheableException extends Exception { }
 
     // streams are "sealed" by default to prevent accidental object leakage
-    public void put(Object key, Object val) { }
     private Cache getCache = new Cache(100, true);
     protected JS _get(JS key) throws JSExn { return null; }
     public final JS get(JS key) throws JSExn {