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 * @param parent
* @return Commands Registered * @return Commands Registered
*/ */
private List<Command> registerMethods(Class<?> cls, Method parent) { public List<Command> registerMethods(Class<?> cls, Method parent) {
try { try {
if (getInjector() == null) { if (getInjector() == null) {
return registerMethods(cls, parent, null); return registerMethods(cls, parent, null);