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),