remove fixed todo

This commit is contained in:
Siddharth Agarwal 2013-07-31 02:02:29 -07:00
parent 05cadae5d8
commit 40ed5f6c9b
2 changed files with 3 additions and 3 deletions

View file

@ -85,7 +85,7 @@ var parse = function(str) {
_.each(commands.getRegexMap(), function (map, thisVCS) {
_.each(map, function(regex, thisMethod) {
if (regex.exec(str)) {
vcs = thisVCS; // XXX get from regex map
vcs = thisVCS;
method = thisMethod;
options = str.slice(vcs.length + 1 + method.length + 1);
}