From 9079b4f5250b204a9ad487c118231e7b4df96b89 Mon Sep 17 00:00:00 2001 From: GIOSDK Date: Tue, 10 Sep 2024 02:32:43 +0000 Subject: [PATCH] style: code format --- Modules/ABTesting/GrowingABTesting.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Modules/ABTesting/GrowingABTesting.m b/Modules/ABTesting/GrowingABTesting.m index fc7e966d..1dcc7660 100644 --- a/Modules/ABTesting/GrowingABTesting.m +++ b/Modules/ABTesting/GrowingABTesting.m @@ -90,7 +90,8 @@ + (void)trackExperiment:(GrowingABTExperiment *)experiment { kABTExpLayerId: experiment.layerId.copy, kABTExpId: experiment.experimentId.copy, kABTExpStrategyId: experiment.strategyId.copy, - }.mutableCopy; + } + .mutableCopy; if (experiment.layerName && experiment.layerName.length > 0) { attributes[kABTExpLayerName] = experiment.layerName.copy; } @@ -100,9 +101,8 @@ + (void)trackExperiment:(GrowingABTExperiment *)experiment { if (experiment.strategyName && experiment.strategyName.length > 0) { attributes[kABTExpStrategyName] = experiment.strategyName.copy; } - - [GrowingEventGenerator generateCustomEvent:kABTExpHit - attributes:attributes.copy]; + + [GrowingEventGenerator generateCustomEvent:kABTExpHit attributes:attributes.copy]; } + (void)fetchExperiment:(NSString *)layerId