(no commit message)
[utils] / crawler / basic / src / org / wamblee / crawler / GetPageRequest.java
index 2ce267ee828e72757efd2d5d22e0c7ea83dda963..1d92b024b78241629b8d748d23e4fbdea8b1d11b 100644 (file)
@@ -17,7 +17,6 @@
 package org.wamblee.crawler;
 
 import java.io.IOException;
-import java.io.PrintStream;
 
 import javax.xml.transform.TransformerException;
 
@@ -40,21 +39,9 @@ public class GetPageRequest extends AbstractPageRequest {
      * @param aXslt XSLT to use. 
      */
     public GetPageRequest(int aMaxTries, int aMaxDelay, NameValuePair[] aParams, String aXslt) {
-        super(aMaxTries, aMaxDelay, aParams, aXslt, null);
+        super(aMaxTries, aMaxDelay, aParams, aXslt);
     }
-
-    /**
-     * Constructs the request.
-     * @param aMaxTries Maximum number of retries. 
-     * @param aMaxDelay Maximum delay before executing the request.
-     * @param aParams Request parameters to use. 
-     * @param aXslt XSLT to use.
-     * @param aOs Logging output stream to use.  
-     */
-    public GetPageRequest(int aMaxTries, int aMaxDelay, NameValuePair[] aParams, String aXslt, PrintStream aOs) {
-        super(aMaxTries, aMaxDelay, aParams, aXslt, aOs);
-    }
-
+    
     /*
      * (non-Javadoc)
      *