GitUI.RevisionGrid.ContinueBisect C# (CSharp) Метод

ContinueBisect() приватный Метод

private ContinueBisect ( GitBisectOption bisectOption ) : void
bisectOption GitBisectOption
Результат void
        private void ContinueBisect(GitBisectOption bisectOption)
        {
            if (Revisions.RowCount <= LastRowIndex || LastRowIndex < 0)
                return;

            FormProcess.ShowDialog(this, Module, GitCommandHelpers.ContinueBisectCmd(bisectOption, GetRevision(LastRowIndex).Guid), false);
            RefreshRevisions();
        }
RevisionGrid