style(Clone.xaml.cs): 使代码风格保持一致

This commit is contained in:
ZCShou 2020-07-24 21:32:11 +08:00
parent 6125c17354
commit 3128deea2c

View file

@ -85,12 +85,9 @@ namespace SourceGit.UI {
}
string rName;
if (string.IsNullOrWhiteSpace(RemoteName))
{
if (string.IsNullOrWhiteSpace(RemoteName)){
rName = null;
}
else
{
} else {
rName = RemoteName;
}