return commandContext.releaseAlternateBuffer();
}
public CommandInvoker<?, ?> resolve(String s) throws CommandException {
CRaSHSession session = (CRaSHSession)getSession();
Token token2 = Token.parse(s);
try {
PipeLineFactory factory = token2.createFactory();
return factory.create(session);
}
catch (CommandNotFoundException e) {
throw new CommandException(ErrorKind.SYNTAX, e.getMessage(), e);
}