Made CommandManager registration with parent public so hooks can be made to existing commands

This commit is contained in:
Trevor Wilson 2013-05-19 02:32:06 -05:00
parent ca06489e11
commit 7c98cc0e01

View File

@ -135,7 +135,7 @@ public abstract class CommandsManager<T> {
* @param parent
* @return Commands Registered
*/
private List<Command> registerMethods(Class<?> cls, Method parent) {
public List<Command> registerMethods(Class<?> cls, Method parent) {
try {
if (getInjector() == null) {
return registerMethods(cls, parent, null);