From f60b64dce2f7ca29cf1cab70fe64d272fb06c062 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 20 Mar 2011 16:26:56 +0000 Subject: [PATCH] [commit] remove unneeded member --- SparkleLib/SparkleCommit.cs | 2 -- SparkleLib/SparkleRepo.cs | 8 ++++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/SparkleLib/SparkleCommit.cs b/SparkleLib/SparkleCommit.cs index 918b6cf2..ea91c0e6 100644 --- a/SparkleLib/SparkleCommit.cs +++ b/SparkleLib/SparkleCommit.cs @@ -27,7 +27,6 @@ namespace SparkleLib { public DateTime DateTime; public string Hash; public bool IsMerge; - public bool IsFileDump; public List Added; public List Deleted; @@ -45,7 +44,6 @@ namespace SparkleLib { MovedTo = new List (); IsMerge = false; - IsFileDump = false; } diff --git a/SparkleLib/SparkleRepo.cs b/SparkleLib/SparkleRepo.cs index 54b44dc7..7055c7a1 100644 --- a/SparkleLib/SparkleRepo.cs +++ b/SparkleLib/SparkleRepo.cs @@ -1035,10 +1035,10 @@ namespace SparkleLib { SparkleCommit commit = new SparkleCommit (); - commit.Hash = match.Groups [1].Value; - commit.UserName = match.Groups [2].Value; - commit.UserEmail = match.Groups [3].Value; - commit.IsMerge = is_merge_commit; + commit.Hash = match.Groups [1].Value; + commit.UserName = match.Groups [2].Value; + commit.UserEmail = match.Groups [3].Value; + commit.IsMerge = is_merge_commit; commit.DateTime = new DateTime (int.Parse (match.Groups [4].Value), int.Parse (match.Groups [5].Value), int.Parse (match.Groups [6].Value),