2003/11/19 06:18:45
[org.ibex.core.git] / src / org / xwt / Res.java
index ae2b50f..7da19ce 100644 (file)
@@ -19,7 +19,6 @@ public abstract class Res extends JS {
     /** so that we get the same subresource each time */
     private Hash refCache = null;
 
-    /** FIXME: needed? good idea? */
     public Template t = null;
 
     public final InputStream getInputStream() throws IOException { return getInputStream(""); }
@@ -50,7 +49,6 @@ public abstract class Res extends JS {
     /** if it makes sense to cache a resource, the resource must return a unique key */
     public String getCacheKey() throws NotCacheableException { throw notCacheable; }
 
-    // FIXME: general cleanup
     /** subclass from this if you want a CachedInputStream for each path */
     public static class CachedRes extends Res {
         private Res parent;