mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
optimize(TwoCommitsDiff): remove unused code
This commit is contained in:
parent
5592c652f7
commit
d2f5e2caf0
1 changed files with 0 additions and 11 deletions
|
@ -219,17 +219,6 @@ namespace SourceGit.UI {
|
||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ChangeListMouseDoubleClick(object sender, MouseButtonEventArgs e) {
|
|
||||||
var row = sender as DataGridRow;
|
|
||||||
if (row == null) return;
|
|
||||||
|
|
||||||
var change = row.DataContext as Git.Change;
|
|
||||||
if (change == null) return;
|
|
||||||
|
|
||||||
var viewer = new FileHistories(repo, change.Path);
|
|
||||||
viewer.Show();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void SortTreeNodes(List<Node> list) {
|
private void SortTreeNodes(List<Node> list) {
|
||||||
list.Sort((l, r) => {
|
list.Sort((l, r) => {
|
||||||
if (l.IsFile) {
|
if (l.IsFile) {
|
||||||
|
|
Loading…
Reference in a new issue