Merge pull request #242 from vu1p3n0x/master

Access to CommandManager registration with parent
This commit is contained in:
Albert Pham 2014-05-01 14:18:23 -07:00
commit 8518f371b2

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);