summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/GenericStringReply.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/replies/GenericStringReply.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/replies/GenericStringReply.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/GenericStringReply.java b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/GenericStringReply.java
deleted file mode 100644
index 38d609ac6..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/GenericStringReply.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package f00f.net.irc.martyr.replies;
-
-public abstract class GenericStringReply extends GenericReply
-{
-
- private String string;
-
- public GenericStringReply()
- {
- }
-
- public GenericStringReply( String string )
- {
- this.string = string;
- }
-
- public String getString()
- {
- return string;
- }
-
-}
-