(no commit message)
[utils] / crawler / basic / src / org / wamblee / crawler / impl / ConfigurationParser.java
index b45053a2ab953c32cdec4a4d954220f86e0e1974..792d0d34ad0f7ac1281e1c56a0afe24975420a83 100644 (file)
@@ -17,7 +17,6 @@
 package org.wamblee.crawler.impl;
 
 import java.io.InputStream;
-import java.io.PrintStream;
 import java.util.ArrayList;
 import java.util.Iterator;
 import java.util.List;
@@ -61,14 +60,11 @@ public class ConfigurationParser {
 
     private static final int MAX_DELAY = 100;
 
-    private PrintStream _os;
-    
     /**
      * Constructs the configuration parser. 
-     * @param aOs The stream for logging requests
      */
-    public ConfigurationParser(PrintStream aOs) {
-        _os = aOs;
+    public ConfigurationParser() {
+        // Empty
     }
 
     /**