summaryrefslogtreecommitdiff
path: root/src/Chapter5/trends/DateInfo.java
diff options
context:
space:
mode:
authorMaurice Laveaux <m.laveaux@student.tue.nl>2014-05-22 16:33:24 +0200
committerMaurice Laveaux <m.laveaux@student.tue.nl>2014-05-22 16:33:24 +0200
commit4f32eedd2bd49837cc297acce399c108e8b558a7 (patch)
treee80ceb3fdf38db9552b52bd7f0c6b209c6c4bc28 /src/Chapter5/trends/DateInfo.java
parent1da00321db0aa8c412c3ff1dff5734962ee49240 (diff)
downloadTwitterDataAnalytics-4f32eedd2bd49837cc297acce399c108e8b558a7.tar.gz
Removed unused source files
* Removed the shitty examples.
Diffstat (limited to 'src/Chapter5/trends/DateInfo.java')
-rw-r--r--src/Chapter5/trends/DateInfo.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/Chapter5/trends/DateInfo.java b/src/Chapter5/trends/DateInfo.java
deleted file mode 100644
index 209f4a3..0000000
--- a/src/Chapter5/trends/DateInfo.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/* TweetTracker. Copyright (c) Arizona Board of Regents on behalf of Arizona State University
- * @author shamanth
- */
-package Chapter5.trends;
-
-import java.util.Date;
-
-public class DateInfo implements Comparable
-{
- public Date d;
- public int count;
-
- public int compareTo(Object o) {
- DateInfo temp = (DateInfo) o;
- if(temp.d.after(this.d))
- {
- return -1;
- }
- else
- if(temp.d.before(this.d))
- {
- return 1;
- }
- else
- {
- return 0;
- }
- }
-}