1
0
mirror of https://e.coding.net/circlecloud/YumCore.git synced 2025-09-02 11:36:59 +00:00

feat: 修复命令匹配错误

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
2016-11-26 00:44:17 +08:00
parent f6b0142238
commit 8feb8fead0

View File

@ -106,7 +106,7 @@ public class CommandMain implements CommandExecutor {
if (cmdinfo.isValid(cmd)) {
Log.d("匹配命令: %s => %s 已缓存...", cmd, cmdinfo);
cmdCache.put(cmd, cmdinfo);
break;
return cmdinfo;
}
}
cmdCache.put(cmd, null);