From b84b6ba49949500734459bae21c43b373c1441fe Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 25 Dec 2011 20:32:39 +0100 Subject: [PATCH] Fix warning --- SparkleLib/Git/SparkleRepoGit.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleLib/Git/SparkleRepoGit.cs b/SparkleLib/Git/SparkleRepoGit.cs index eb349773..e1c8c167 100755 --- a/SparkleLib/Git/SparkleRepoGit.cs +++ b/SparkleLib/Git/SparkleRepoGit.cs @@ -248,14 +248,14 @@ namespace SparkleLib { // Removes unneeded objects - private void CollectGarbage () +/* private void CollectGarbage () { SparkleGit git = new SparkleGit (LocalPath, "gc"); git.Start (); git.WaitForExit (); SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Garbage collected."); - } + } */ // Commits the made changes