SparkleController: Fix compilation (issue#22)

This commit is contained in:
Bertrand Lorentz 2011-01-16 11:29:02 +01:00
parent 3401276881
commit a44b5bf9ff

View file

@ -26,7 +26,6 @@ using System.Threading;
using System.Text.RegularExpressions;
using System.Xml;
using System.Net;
using System.Security.Cryptography;
using System.Text;
@ -1075,21 +1074,4 @@ Console.WriteLine(GetAvatar (change_set.UserEmail, 32));
}
// 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);
}
}
}