234235236237238239240241242243244
// Command proto = (Command) commandProtoMap.get(name); if (proto == null) { throw new NoSuchCommandException(name); } Command command = (Command) proto.clone(); command.setCommandContext(createCommandContext());
157158159160161162163164165166167