diff options
author | ElgarL <ElgarL@palmergames.com> | 2012-11-09 05:51:15 -0800 |
---|---|---|
committer | ElgarL <ElgarL@palmergames.com> | 2012-11-09 05:51:15 -0800 |
commit | 5e38a2180cf2ffd36a28255fe2c795356b48205c (patch) | |
tree | 0c739b245be63599cd979e726424026c77ca67bf | |
parent | f3bc94a5471eea5c191f938c3536f0fab7b5f707 (diff) | |
parent | ef98a6b54c9423803d5dfe55a2bee642f94b7c4a (diff) | |
download | Essentials-5e38a2180cf2ffd36a28255fe2c795356b48205c.tar Essentials-5e38a2180cf2ffd36a28255fe2c795356b48205c.tar.gz Essentials-5e38a2180cf2ffd36a28255fe2c795356b48205c.tar.lz Essentials-5e38a2180cf2ffd36a28255fe2c795356b48205c.tar.xz Essentials-5e38a2180cf2ffd36a28255fe2c795356b48205c.zip |
Merge pull request #193 from necrodoom/patch-18
GroupManager typo fix
-rw-r--r-- | EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java b/EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java index a4b346154..263ad0cce 100644 --- a/EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java +++ b/EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java @@ -420,7 +420,7 @@ public class WorldDataHolder { throw new IllegalArgumentException("The file which should contain groups does not exist!\n" + groupsFile.getPath()); } catch (IOException e) { e.printStackTrace(); - throw new IllegalArgumentException("Error access the groups file!\n" + groupsFile.getPath()); + throw new IllegalArgumentException("Error accessing the groups file!\n" + groupsFile.getPath()); } GroupManager.setLoaded(true); @@ -437,7 +437,7 @@ public class WorldDataHolder { throw new IllegalArgumentException("The file which should contain users does not exist!\n" + usersFile.getPath()); } catch (IOException e) { e.printStackTrace(); - throw new IllegalArgumentException("Error access the users file!\n" + usersFile.getPath()); + throw new IllegalArgumentException("Error accessing the users file!\n" + usersFile.getPath()); } GroupManager.setLoaded(true); |