removed obsolete Stream.put()
[org.ibex.core.git] / 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 {