Skip to content

Commit

Permalink
fixup! review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gerhardol committed Feb 20, 2021
1 parent 4acfc48 commit 0178fb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GitCommands/Git/SubmoduleHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ public static class SubmoduleHelpers
else
{
var submodule = module.GetSubmodule(fileName);
addedCommits = submodule.GetCommitCount(commitId.ToString(), oldCommitId.ToString(), true);
removedCommits = submodule.GetCommitCount(oldCommitId.ToString(), commitId.ToString(), true);
addedCommits = submodule.GetCommitCount(commitId.ToString(), oldCommitId.ToString(), cache: true);
removedCommits = submodule.GetCommitCount(oldCommitId.ToString(), commitId.ToString(), cache: true);
}
}

Expand Down

0 comments on commit 0178fb7

Please sign in to comment.