summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/State.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/State.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/State.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/State.java b/EssentialsUpdate/src/f00f/net/irc/martyr/State.java
deleted file mode 100644
index e1e60ce9d..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/State.java
+++ /dev/null
@@ -1,31 +0,0 @@
-package f00f.net.irc.martyr;
-
-/**
- * A simple container for state constants. The state constants here
- * are used to specify what state the protocol is in. The State
- * object is both the state representitive and the state container.
- * This was done so that state could be typesafe and valuesafe.
- *
- */
-public class State
-{
-
- public static final State UNCONNECTED = new State("unconnected");
- public static final State UNREGISTERED = new State("unregistered");
- public static final State REGISTERED = new State("registered");
- public static final State UNKNOWN = new State("unknown/any");
-
- private String stateName;
-
- private State( String str )
- {
- stateName = str;
- }
-
- public String toString()
- {
- return stateName;
- }
-
-}
-