changeset: rename DateTime to Timestamp

This commit is contained in:
Hylke Bons 2011-05-17 00:59:03 +01:00
parent 2888d269e8
commit d1a545d65f
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ namespace SparkleLib {
public string UserName;
public string UserEmail;
public string Hash;
public DateTime DateTime;
public DateTime Timestamp;
public bool IsMerge = false;
public List<string> Added = new List<string> ();
public List<string> Deleted = new List<string> ();

View file

@ -924,7 +924,7 @@ namespace SparkleLib {
change_set.UserEmail = match.Groups [3].Value;
change_set.IsMerge = is_merge_commit;
change_set.DateTime = new DateTime (int.Parse (match.Groups [4].Value),
change_set.Timestamp = new DateTime (int.Parse (match.Groups [4].Value),
int.Parse (match.Groups [5].Value), int.Parse (match.Groups [6].Value),
int.Parse (match.Groups [7].Value), int.Parse (match.Groups [8].Value),
int.Parse (match.Groups [9].Value));