1
0
mirror of https://e.coding.net/circlecloud/YumCore.git synced 2024-11-21 01:38:51 +00:00

feat: 修复命令匹配错误

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
502647092 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);