mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-10 14:44:28 +02:00
remove fixed todo
This commit is contained in:
parent
05cadae5d8
commit
40ed5f6c9b
2 changed files with 3 additions and 3 deletions
|
@ -9954,7 +9954,7 @@ var parse = function(str) {
|
||||||
_.each(commands.getRegexMap(), function (map, thisVCS) {
|
_.each(commands.getRegexMap(), function (map, thisVCS) {
|
||||||
_.each(map, function(regex, thisMethod) {
|
_.each(map, function(regex, thisMethod) {
|
||||||
if (regex.exec(str)) {
|
if (regex.exec(str)) {
|
||||||
vcs = thisVCS; // XXX get from regex map
|
vcs = thisVCS;
|
||||||
method = thisMethod;
|
method = thisMethod;
|
||||||
options = str.slice(vcs.length + 1 + method.length + 1);
|
options = str.slice(vcs.length + 1 + method.length + 1);
|
||||||
}
|
}
|
||||||
|
@ -23425,7 +23425,7 @@ var parse = function(str) {
|
||||||
_.each(commands.getRegexMap(), function (map, thisVCS) {
|
_.each(commands.getRegexMap(), function (map, thisVCS) {
|
||||||
_.each(map, function(regex, thisMethod) {
|
_.each(map, function(regex, thisMethod) {
|
||||||
if (regex.exec(str)) {
|
if (regex.exec(str)) {
|
||||||
vcs = thisVCS; // XXX get from regex map
|
vcs = thisVCS;
|
||||||
method = thisMethod;
|
method = thisMethod;
|
||||||
options = str.slice(vcs.length + 1 + method.length + 1);
|
options = str.slice(vcs.length + 1 + method.length + 1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,7 +85,7 @@ var parse = function(str) {
|
||||||
_.each(commands.getRegexMap(), function (map, thisVCS) {
|
_.each(commands.getRegexMap(), function (map, thisVCS) {
|
||||||
_.each(map, function(regex, thisMethod) {
|
_.each(map, function(regex, thisMethod) {
|
||||||
if (regex.exec(str)) {
|
if (regex.exec(str)) {
|
||||||
vcs = thisVCS; // XXX get from regex map
|
vcs = thisVCS;
|
||||||
method = thisMethod;
|
method = thisMethod;
|
||||||
options = str.slice(vcs.length + 1 + method.length + 1);
|
options = str.slice(vcs.length + 1 + method.length + 1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue