Once again remove the additional ActivityDay class

It was previously removed in a44b5bf9ff
but got readded by accident in f274ffac4d.
This commit is contained in:
Łukasz Jernaś 2011-02-12 15:12:28 +01:00
parent aceb42ad68
commit e0646404da

View file

@ -1142,21 +1142,5 @@ Console.WriteLine(GetAvatar (change_set.UserEmail, 32));
public class ChangeSet : SparkleCommit {
}
// All commits that happened on a day
public class ActivityDay : List <SparkleCommit> {
public DateTime DateTime;
public ActivityDay (DateTime date_time)
{
DateTime = date_time;
DateTime = new DateTime (DateTime.Year, DateTime.Month, DateTime.Day);
}
}
}