Skip to content

Commit

Permalink
Removed workarounds for #1898 since it is now fixed on master
Browse files Browse the repository at this point in the history
  • Loading branch information
cquinn committed May 12, 2017
1 parent d7a5ec3 commit c557226
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions packages/cli/command_help.pony
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ primitive Help
| let ccs: CommandSpec box =>
let cch = CommandHelp._create(ch, ccs)
return _parse(ccs, cch, argv.slice(1))
else
// TODO https://github.com/ponylang/ponyc/issues/1898
return SyntaxError("issue", "1898")
end
end
return SyntaxError(cname, "unknown command")
Expand Down
4 changes: 0 additions & 4 deletions packages/cli/command_parser.pony
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ class CommandParser
| let cs: CommandSpec box =>
return CommandParser._sub(cs, this).
_parse_command(tokens, options, args, envsmap, opt_stop)
else
None // TODO https://github.com/ponylang/ponyc/issues/1898
end
end
else
Expand Down Expand Up @@ -157,8 +155,6 @@ class CommandParser
match arg
| "" => return Help.general(_root_spec())
| let c: String => return Help.for_command(_root_spec(), [c])
else
None // TODO https://github.com/ponylang/ponyc/issues/1898
end
end
return Help.general(_root_spec())
Expand Down

0 comments on commit c557226

Please sign in to comment.