Author: j16sdiz
Date: 2009-02-13 15:08:01 +0000 (Fri, 13 Feb 2009)
New Revision: 25622

Modified:
   trunk/freenet/src/freenet/clients/http/filter/CSSReadFilter.java
Log:
generic for filter

Modified: trunk/freenet/src/freenet/clients/http/filter/CSSReadFilter.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/filter/CSSReadFilter.java    
2009-02-13 14:59:35 UTC (rev 25621)
+++ trunk/freenet/src/freenet/clients/http/filter/CSSReadFilter.java    
2009-02-13 15:08:01 UTC (rev 25622)
@@ -23,9 +23,8 @@
 
 public class CSSReadFilter implements ContentDataFilter, CharsetExtractor {
 
-       public Bucket readFilter(Bucket bucket, BucketFactory bf, String 
charset,
-                       HashMap otherParams, FilterCallback cb) throws 
DataFilterException,
-                       IOException {
+       public Bucket readFilter(Bucket bucket, BucketFactory bf, String 
charset, HashMap<String, String> otherParams,
+               FilterCallback cb) throws DataFilterException, IOException {
                if (Logger.shouldLog(Logger.DEBUG, this))
                        Logger.debug(
                                this,
@@ -67,9 +66,8 @@
                return temp;
        }
 
-       public Bucket writeFilter(Bucket data, BucketFactory bf, String charset,
-                       HashMap otherParams, FilterCallback cb) throws 
DataFilterException,
-                       IOException {
+       public Bucket writeFilter(Bucket data, BucketFactory bf, String 
charset, HashMap<String, String> otherParams,
+               FilterCallback cb) throws DataFilterException, IOException {
                throw new UnsupportedOperationException();
        }
 

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to