summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2014-04-30 16:02:14 +0200
committerPeter Wu <peter@lekensteyn.nl>2014-04-30 16:02:14 +0200
commit9b9e6656152083a86534f74616b93be21aa0d22d (patch)
treea30f7a87efb7928f7b9c1514685dd0552a553872
parent1d6a953c4fe65b3e4af874b05148d4e0e78566c1 (diff)
downloadTwitterDataAnalytics-9b9e6656152083a86534f74616b93be21aa0d22d.tar.gz
Drop shit from main
-rw-r--r--src/main/Main.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/main/Main.java b/src/main/Main.java
index 656e1ee..05429fb 100644
--- a/src/main/Main.java
+++ b/src/main/Main.java
@@ -200,28 +200,3 @@ public class Main {
}
}
}
-
-/**
- * OLD main
- * public static void main(String[] args) throws IOException {
- * TwitterApi api = TwitterApi.getAppOnly();
-
- // create the object that queues and executes the commands.
- CommandQueue queue = new CommandQueue();
-
- // create the object that parses the arguments.
- CommandParser parser = new CommandParser(queue, api);
-
- // parse the input arguments and create the command.
- parser.parse(args);
-
- Scanner input = new Scanner(System.in);
-
- // parse the receiving data through the input
- while (true) {
- queue.executeAll();
-
- // parse new input.
- parser.parse(scanner.nextLine());
- }
- */