@@ -158,8 +158,8 @@ - (void)setIadDate:(NSDate *)iAdImpressionDate withPurchaseDate:(NSDate *)appPur
158158 if (iAdImpressionDate != nil || appPurchaseDate != nil ) {
159159 ADJPackageBuilder *clickBuilder = [[ADJPackageBuilder alloc ]
160160 initWithDeviceInfo: self .deviceInfo
161- andActivityState :self .activityState
162- andConfig :self .adjustConfig];
161+ activityState :self .activityState
162+ config :self .adjustConfig];
163163
164164 [clickBuilder setClickTime: iAdImpressionDate];
165165 [clickBuilder setPurchaseTime: appPurchaseDate];
@@ -247,12 +247,12 @@ - (void)initInternal:(ADJConfig *)adjustConfig {
247247
248248- (id <ADJAttributionHandler>) buildAttributionHandler {
249249 ADJPackageBuilder *attributionBuilder = [[ADJPackageBuilder alloc ] initWithDeviceInfo: self .deviceInfo
250- andActivityState :self .activityState
251- andConfig :self .adjustConfig];
250+ activityState :self .activityState
251+ config :self .adjustConfig];
252252 ADJActivityPackage *attributionPackage = [attributionBuilder buildAttributionPackage ];
253253 id <ADJAttributionHandler> attributionHandler = [ADJAdjustFactory attributionHandlerForActivityHandler: self
254- withMaxDelay: nil
255- withAttributionPackage: attributionPackage];
254+ withMaxDelay: nil
255+ withAttributionPackage: attributionPackage];
256256
257257 return attributionHandler;
258258}
@@ -312,8 +312,8 @@ - (void)startInternal {
312312 self.activityState .lastActivity = now;
313313 [self writeActivityState ];
314314 [self .logger info: @" Processed Subsession %d of Session %d " ,
315- self .activityState.subsessionCount,
316- self .activityState.sessionCount];
315+ self .activityState.subsessionCount,
316+ self .activityState.sessionCount];
317317 }
318318
319319 if (self.attribution == nil || self.activityState .askingAttribution ) {
@@ -353,8 +353,8 @@ - (void)eventInternal:(ADJEvent *)event
353353
354354 // create and populate event package
355355 ADJPackageBuilder *eventBuilder = [[ADJPackageBuilder alloc ] initWithDeviceInfo: self .deviceInfo
356- andActivityState :self .activityState
357- andConfig :self .adjustConfig];
356+ activityState :self .activityState
357+ config :self .adjustConfig];
358358
359359 ADJActivityPackage *eventPackage = [eventBuilder buildEventPackage: event];
360360 [self .packageHandler addPackage: eventPackage];
@@ -399,8 +399,8 @@ - (void) appWillOpenUrlInternal:(NSURL *)url {
399399
400400
401401 ADJPackageBuilder *clickBuilder = [[ADJPackageBuilder alloc ] initWithDeviceInfo: self .deviceInfo
402- andActivityState :self .activityState
403- andConfig :self .adjustConfig];
402+ activityState :self .activityState
403+ config :self .adjustConfig];
404404 clickBuilder.deeplinkParameters = adjustDeepLinks;
405405 clickBuilder.attribution = attribution;
406406
@@ -409,8 +409,8 @@ - (void) appWillOpenUrlInternal:(NSURL *)url {
409409}
410410
411411- (BOOL ) trySetAttributionDeeplink : (ADJAttribution *)attribution
412- withKey : (NSString *)key
413- withValue : (NSString *)value {
412+ withKey : (NSString *)key
413+ withValue : (NSString *)value {
414414
415415 if ([key isEqualToString: @" tracker" ]) {
416416 attribution.trackerName = value;
@@ -491,8 +491,8 @@ - (void)readAttribution {
491491
492492- (void )transferSessionPackage {
493493 ADJPackageBuilder *sessionBuilder = [[ADJPackageBuilder alloc ] initWithDeviceInfo: self .deviceInfo
494- andActivityState :self .activityState
495- andConfig :self .adjustConfig];
494+ activityState :self .activityState
495+ config :self .adjustConfig];
496496 ADJActivityPackage *sessionPackage = [sessionBuilder buildSessionPackage ];
497497 [self .packageHandler addPackage: sessionPackage];
498498 [self .packageHandler sendFirstPackage ];
@@ -503,9 +503,9 @@ - (void)transferSessionPackage {
503503- (void )startTimer {
504504 if (self.timer == nil ) {
505505 self.timer = [ADJTimer timerWithInterval: kTimerInterval
506- leeway: kTimerLeeway
507- queue: self .internalQueue
508- block: ^{ [self timerFired ]; }];
506+ leeway: kTimerLeeway
507+ queue: self .internalQueue
508+ block: ^{ [self timerFired ]; }];
509509 }
510510 [self .timer resume ];
511511}
@@ -578,7 +578,7 @@ - (BOOL) checkTransactionId:(NSString *)transactionId {
578578 [self .logger verbose: @" Found transaction ID in %@ " , self .activityState.transactionIds];
579579 return NO ; // transaction ID found -> used already
580580 }
581-
581+
582582 [self .activityState addTransactionId: transactionId];
583583 [self .logger verbose: @" Added transaction ID %@ " , self .activityState.transactionIds];
584584 // activity state will get written by caller
0 commit comments