if (StringUtils.isBlank(command)) {
return Collections.emptyList();
}
try {
// validate if it is commented
final CommentedLine comment = new CommentedLine(command,
inBlockComment);
TailorHelper.removeComment(comment);
inBlockComment = comment.getInBlockComment();
command = comment.getLine();
if (StringUtils.isBlank(command)) {
return Collections.emptyList();
}
// parse and tailor
final CommandTransformation commandTrafo = new CommandTransformation(