Never used outside of the command manager

This commit is contained in:
ossian winter 2018-10-02 13:55:49 -05:00
parent 1846d039b8
commit c97ae001f5
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class CommandManager {
}
public static String strip(String str, String key){
private static String strip(String str, String key){
if (str.startsWith(key) && str.endsWith(key)) return str.substring(key.length(), str.length()-key.length());
return str;
}