Signal-iOS/SignalServiceKit
Evan Hahn d3ce4fa45f Move autoreleasepool "up" a level for clarity
**I recommend reviewing this with whitespace changes disabled.**

We have some code that looks like this:

    func processAll() {
      while processNext() {}
    }

    func processNext() {
      autoreleasepool {
        process()
      }
    }

I think it's clearer to move the `autoreleasepool` "up" a level, like
this:

    func processAll() {
      while autoreleasepool(invoking: { processNext() }) {}
    }

    func processNext() {
      process()
    }

This change should have no user impact.
2023-02-21 05:51:42 -08:00
..
Calls Enable a RingRTC field trial for all users, with kill switch 2023-02-01 16:20:16 -06:00
DateProvider Implement RegistrationSessionManager 2023-02-08 15:37:12 -08:00
Dependencies Hook together RegistrationNavigationController and RegistrationCoordinator 2023-02-17 08:00:48 -08:00
Experience Upgrades "Create a username" megaphone 2023-02-17 11:21:54 -08:00
Jobs Update SignalCoreKit. Use explicit DispatchQueue instead of relying on the implicit type on promise 'on' params 2023-02-07 16:14:39 -08:00
KeyBackupService Retry most network failures in RegistrationCoordinator 2023-02-17 14:50:54 -08:00
Mocks Hook up RegistrationPermissionsViewController 2023-02-17 16:31:13 -08:00
protobuf Add a flag for showing username education 2023-02-16 12:11:48 -08:00
Registration Retry most network failures in RegistrationCoordinator 2023-02-17 14:50:54 -08:00
Resources Verify IAS certificates using LibSignalClient 2023-02-10 10:23:50 -08:00
Schedulers Fix main queue scheduler 2023-02-16 12:18:15 -08:00
src Move autoreleasepool "up" a level for clarity 2023-02-21 05:51:42 -08:00
tests Update registation API responses to match updated server spec 2023-02-17 14:11:43 -08:00
Usernames Add a flag for showing username education 2023-02-16 12:11:48 -08:00
.clang-format Update clang-format with AllowShortEnumsOnASingleLine: false 2022-03-14 11:20:20 -07:00
.gitignore
.travis.yml
SignalServiceKit-Prefix.pch Change license to AGPL 2022-10-13 08:25:37 -05:00
SignalServiceKit.h Verify IAS certificates using LibSignalClient 2023-02-10 10:23:50 -08:00