mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2025-01-11 23:57:21 -08:00
code_style: run dotnet format
This commit is contained in:
parent
f06b1d5d51
commit
a3d744f426
12 changed files with 19 additions and 19 deletions
|
@ -29,7 +29,8 @@ namespace SourceGit.Native
|
|||
"/usr/bin/git", "/usr/local/bin/git", "/opt/homebrew/bin/git", "/opt/homebrew/opt/git/bin/git"
|
||||
};
|
||||
foreach (var path in gitPathVariants)
|
||||
if (File.Exists(path)) return path;
|
||||
if (File.Exists(path))
|
||||
return path;
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
|
|
|
@ -136,7 +136,8 @@ namespace SourceGit.Views
|
|||
Task.Run(() =>
|
||||
{
|
||||
var c = detail.GetParent(sha);
|
||||
if (c == null) return;
|
||||
if (c == null)
|
||||
return;
|
||||
|
||||
Dispatcher.UIThread.Invoke(() =>
|
||||
{
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
using System;
|
||||
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Controls.Primitives;
|
||||
using Avalonia.Interactivity;
|
||||
|
||||
using AvaloniaEdit;
|
||||
using AvaloniaEdit.Document;
|
||||
using AvaloniaEdit.Editing;
|
||||
using AvaloniaEdit.TextMate;
|
||||
using AvaloniaEdit;
|
||||
|
||||
namespace SourceGit.Views
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue