修正参数传递错误

This commit is contained in:
zhouxiunai
2019-01-08 15:52:29 +08:00
parent f7fd218f93
commit 90d8751740
@@ -40,7 +40,7 @@ public class MsgHandlerDispatcher {
Class clazzHandler = Class.forName(getHandlerClassName(type,subType));
Object classObject = clazzHandler.newInstance();
Method runMethod = clazzHandler.getMethod("run", CminmsgWapper.class);
HandlerResult result = (HandlerResult) runMethod.invoke(classObject, cminmsg);
HandlerResult result = (HandlerResult) runMethod.invoke(classObject, cminmsgWapper);
return result;
} catch (Exception e) {
//throw new RuntimeException(e);