[commit] remove unneeded member

This commit is contained in:
Hylke Bons 2011-03-20 16:26:56 +00:00
parent 83811f9503
commit f60b64dce2
2 changed files with 4 additions and 6 deletions

View file

@ -27,7 +27,6 @@ namespace SparkleLib {
public DateTime DateTime;
public string Hash;
public bool IsMerge;
public bool IsFileDump;
public List <string> Added;
public List <string> Deleted;
@ -45,7 +44,6 @@ namespace SparkleLib {
MovedTo = new List <string> ();
IsMerge = false;
IsFileDump = false;
}

View file

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