Skip to content

Commit 4bab2a9

Browse files
committed
strongSelf -> self for consistency.
1 parent 1ce51c3 commit 4bab2a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Toolkit/ArcGISToolkit/AR/ArcGISARView.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -287,13 +287,13 @@ public class ArcGISARView: UIView {
287287
/// Operations that happen after device tracking has started.
288288
fileprivate func finalizeStart() {
289289
DispatchQueue.main.async { [weak self] in
290-
guard let strongSelf = self else { return }
290+
guard let self = self else { return }
291291
// Run the ARSession.
292-
if strongSelf.isUsingARKit {
293-
strongSelf.arSCNView.session.run(strongSelf.arConfiguration, options: .resetTracking)
292+
if self.isUsingARKit {
293+
self.arSCNView.session.run(self.arConfiguration, options: .resetTracking)
294294
}
295295

296-
strongSelf.isTracking = true
296+
self.isTracking = true
297297
}
298298
}
299299

0 commit comments

Comments
 (0)