summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice Laveaux <m.laveaux@student.tue.nl>2014-04-30 11:55:33 +0200
committerMaurice Laveaux <m.laveaux@student.tue.nl>2014-04-30 11:55:33 +0200
commitd05e3c54262d196d43955701bc555d096607ddb0 (patch)
tree63c7d3ca630003563090689758a89d519e9c0e60
parent7e10625e9cdb4cc8650773e2a674796f0ab8c478 (diff)
downloadTwitterDataAnalytics-d05e3c54262d196d43955701bc555d096607ddb0.tar.gz
Removed unused data classes
* data will be stored as JSONObjects into files.
-rw-r--r--src/data/Profile.java16
-rw-r--r--src/data/Tweet.java9
2 files changed, 0 insertions, 25 deletions
diff --git a/src/data/Profile.java b/src/data/Profile.java
deleted file mode 100644
index 4e1f413..0000000
--- a/src/data/Profile.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package data;
-
-/**
- * This class contains all data that is stored of a user by twitter.
- */
-public class Profile {
-
- // The displayed name of the user.
- private String m_displayName;
-
- // The real name of the user (when set)
- private String m_realName;
-
- // When the profile is created.
- private String m_creationDate;
-}
diff --git a/src/data/Tweet.java b/src/data/Tweet.java
deleted file mode 100644
index ebaabf3..0000000
--- a/src/data/Tweet.java
+++ /dev/null
@@ -1,9 +0,0 @@
-
-package data;
-
-/**
- * This class contains the data that is stored within a Tweet.
- */
-public class Tweet {
-
-}