(no commit message)
[utils] / crawler / basic / src / org / wamblee / crawler / PostPageRequest.java
index 2bb7dc91a88a7ae9c66cca685fffe3d54fd00dfb..db1f2eb9c9b93c4f632157469a681d9fde99a509 100644 (file)
@@ -17,7 +17,6 @@
 package org.wamblee.crawler;
 
 import java.io.IOException;
-import java.io.PrintStream;
 
 import javax.xml.transform.TransformerException;
 
@@ -39,20 +38,7 @@ public class PostPageRequest extends AbstractPageRequest {
      * @param aXslt XSLT to use.  
      */
     public PostPageRequest(int aMaxTries, int aMaxDelay, NameValuePair[] aParams, String aXslt) {
-        super(aMaxTries, aMaxDelay, aParams, aXslt, null);
-    }
-
-    /**
-     * 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 PostPageRequest(int aMaxTries, int aMaxDelay, NameValuePair[] aParams, String aXslt,
-            PrintStream aOs) {
-        super(aMaxTries, aMaxDelay, aParams, aXslt, aOs);
+        super(aMaxTries, aMaxDelay, aParams, aXslt);
     }
 
     /*