GitScc.PendingChangesView.ClearDiffEditor C# (CSharp) Method

ClearDiffEditor() public method

Clears the diff editor.
public ClearDiffEditor ( ) : void
return void
        public void ClearDiffEditor()
        {
            var action = new Action(() => this.DiffEditor.Clear());
            this.DiffEditor.Dispatcher.BeginInvoke(action);
        }