forked from organicmaps/organicmaps
Address comments.
This commit is contained in:
parent
9bd41942dc
commit
5ded0b00d1
1 changed files with 1 additions and 3 deletions
|
@ -6,19 +6,17 @@
|
|||
|
||||
- (void) startSession
|
||||
{
|
||||
NSLog(@"Stats: Start session.");
|
||||
[Flurry startSession:
|
||||
[[NSBundle mainBundle] objectForInfoDictionaryKey:@"FlurryKey"]];
|
||||
}
|
||||
|
||||
- (void) stopSession
|
||||
{
|
||||
NSLog(@"Stats: Stop session.");
|
||||
}
|
||||
|
||||
+ (Statistics *) instance
|
||||
{
|
||||
static Statistics *instance = nil;
|
||||
static Statistics* instance = nil;
|
||||
static dispatch_once_t onceToken;
|
||||
dispatch_once(&onceToken, ^{
|
||||
instance = [[Statistics alloc] init];
|
||||
|
|
Loading…
Add table
Reference in a new issue