Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Nov 22, 2022
1 parent 9883941 commit 2a74fcc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Sources/Sentry/SentryUIEventTracker.m
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ - (void)start

if (currentActiveTransaction) {
[currentActiveTransaction finish];
logWithMessage:
logWithMessage:
[NSString stringWithFormat:@"SentryUIEventTracker finished transaction %@",
currentActiveTransaction.transactionContext.name]
andLevel:kSentryLevelDebug];
Expand Down Expand Up @@ -123,11 +123,11 @@ - (void)start
}];

if ([[sender class] isSubclassOfClass:[UIView class]]) {
UIView *view = sender;
if (view.accessibilityIdentifier) {
[transaction setTagValue:view.accessibilityIdentifier
forKey:@"accessibilityIdentifier"];
}
UIView *view = sender;
if (view.accessibilityIdentifier) {
[transaction setTagValue:view.accessibilityIdentifier
forKey:@"accessibilityIdentifier"];
}
}

transaction.finishCallback = ^(SentryTracer *tracer) {
Expand All @@ -136,7 +136,7 @@ - (void)start
}
};
@synchronized(self.activeTransactions) {
[self.activeTransactions addObject:transaction];
[self.activeTransactions addObject:transaction];
}
}
forKey:SentryUIEventTrackerSwizzleSendAction];
Expand Down

0 comments on commit 2a74fcc

Please sign in to comment.