From 0813af349457238f22ff2c6203d1c709b7baa64b Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 15 Jun 2018 17:44:40 +0100 Subject: [PATCH] repo git: Fix whitespace --- Sparkles/Git/GitRepository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sparkles/Git/GitRepository.cs b/Sparkles/Git/GitRepository.cs index 12117532..df2618de 100644 --- a/Sparkles/Git/GitRepository.cs +++ b/Sparkles/Git/GitRepository.cs @@ -511,7 +511,7 @@ namespace Sparkles.Git { // ?? unmerged, new files -> Stage the new files var git_status = new GitCommand (LocalPath, "status --porcelain"); - string output = git_status.StartAndReadStandardOutput (); + string output = git_status.StartAndReadStandardOutput (); string [] lines = output.Split ("\n".ToCharArray ()); bool trigger_conflict_event = false; @@ -1014,7 +1014,7 @@ namespace Sparkles.Git { while (!git_status.StandardOutput.EndOfStream) { string line = git_status.StandardOutput.ReadLine (); - line = line.Trim (); + line = line.Trim (); if (line.EndsWith (".empty") || line.EndsWith (".empty\"")) line = line.Replace (".empty", "");