This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Benchmarks / Spider / Java / Spider.java
diff --git a/Robust/src/Benchmarks/Spider/Java/Spider.java b/Robust/src/Benchmarks/Spider/Java/Spider.java
deleted file mode 100644 (file)
index fbe6648..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-public class Spider {
-
-
-
-    public static void main(String[] parameters) {
-       String firstmachine=parameters[0];
-       String firstpage=parameters[1];
-       QueryList ql=new QueryList();
-       QueryQueue toprocess=new QueryQueue();
-       Query firstquery=new Query(firstmachine, firstpage);
-       toprocess.addQuery(firstquery);
-       QueryThread qt1=new QueryThread(toprocess, ql);
-       qt1.start();
-       QueryThread qt2=new QueryThread(toprocess, ql);
-       qt2.start();
-       QueryThread qt3=new QueryThread(toprocess, ql);
-       qt3.start();
-       while(true)
-           Thread.sleep(1000000);
-    }
-
-
-}