remove some TODOs

This commit is contained in:
Hylke Bons 2011-06-26 02:41:00 +01:00
parent 3b1195e56c
commit 4018f82728
3 changed files with 0 additions and 10 deletions

View file

@ -346,7 +346,6 @@ namespace SparkleLib {
// Returns a list of the latest change sets
// TODO: Method needs to be made a lot faster
public override List <SparkleChangeSet> GetChangeSets (int count)
{
if (count < 1)
@ -395,7 +394,6 @@ namespace SparkleLib {
"([0-9]{2}):([0-9]{2}):([0-9]{2}) (.[0-9]{4})\n" +
"*", RegexOptions.Compiled);
// TODO: Need to optimise for speed
foreach (string log_entry in entries) {
Regex regex;
bool is_merge_commit = false;

View file

@ -185,7 +185,6 @@ namespace SparkleLib {
// Returns a list of the latest change sets
// TODO: Method needs to be made a lot faster
public override List<SparkleChangeSet> GetChangeSets (int count)
{
if (count < 1)
@ -224,7 +223,6 @@ namespace SparkleLib {
Regex regex = new Regex (@"([0-9]{4})-([0-9]{2})-([0-9]{2}).*([0-9]{2}):([0-9]{2}).*.([0-9]{4})" +
"(.+)<(.+)>.*.([a-z0-9]{12})", RegexOptions.Compiled);
// TODO: Need to optimise for speed
foreach (string log_entry in entries) {
bool is_merge_commit = false;

View file

@ -36,12 +36,6 @@ namespace SparkleShare {
NSApplication.SharedApplication.DockTile.BadgeLabel = null;
}
public override void OrderFrontStandardAboutPanel (NSObject sender)
{
// FIXME: Doesn't work
new SparkleAbout ();
}
public override void WillTerminate (NSNotification notification)
{
SparkleShare.Controller.Quit ();