# HG changeset patch # User Peter Hosey # Date 1265700751 28800 # Node ID c5151d9559e778c189d1368ee8b6bc56ee2a04df # Parent d8b57dfcd2ae3375532602aee05a36ac99cbc32d Seems we don't need to load the tickets when initializing the ticket controller, because GAC will tell it to load them soon after anyway. This saves a bit of time in GHA launch. diff -r d8b57dfcd2ae -r c5151d9559e7 Core/Source/GrowlTicketController.m --- a/Core/Source/GrowlTicketController.m Mon Feb 08 08:10:56 2010 -0800 +++ b/Core/Source/GrowlTicketController.m Mon Feb 08 23:32:31 2010 -0800 @@ -20,7 +20,6 @@ - (id) initSingleton { if ((self = [super initSingleton])) { ticketsByApplicationName = [[NSMutableDictionary alloc] init]; - [self loadAllSavedTickets]; } return self; }