Removed Locale enum to make code usable for every possible language.
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / network / Locale.java
diff --git a/src/main/java/eu/svjatoslav/commons/network/Locale.java b/src/main/java/eu/svjatoslav/commons/network/Locale.java
deleted file mode 100755 (executable)
index e05cb5a..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Svjatoslav Commons - shared library of common functionality.
- * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 3 of the GNU Lesser General Public License
- * or later as published by the Free Software Foundation.
- */
-
-package eu.svjatoslav.commons.network;
-
-public enum Locale {
-       ENG("eng"), EST("est"), RUS("rus");
-
-       String asString;
-
-       Locale(final String asString) {
-               this.asString = asString;
-       }
-
-       public String asString() {
-               return asString;
-       }
-
-}