Signal-iOS/SignalServiceKit/src
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
..
Account "Create a username" megaphone 2023-02-17 11:21:54 -08:00
Contacts use consistent sign on last interaction row id 2023-02-18 00:33:44 -06:00
Devices remove unneeded variable that was shadowing another 2023-02-13 15:24:52 -06:00
groups Update SignalCoreKit. Use explicit DispatchQueue instead of relying on the implicit type on promise 'on' params 2023-02-07 16:14:39 -08:00
Messages Move autoreleasepool "up" a level for clarity 2023-02-21 05:51:42 -08:00
Network Update registation API responses to match updated server spec 2023-02-17 14:11:43 -08:00
Payments [Payments] Biometry Payments Lock 2023-02-03 12:56:54 -08:00
Protocols Add contacts' usernames to ContactRecord, if nothing better available 2023-02-14 13:42:53 -08:00
Protos Add a flag for showing username education 2023-02-16 12:11:48 -08:00
Remote Attestation Finish registration in RegistrationCoordinator 2023-02-16 17:21:21 -08:00
Security do not use same variable for inner for loop as outer 2023-02-13 15:24:52 -06:00
Storage Check for corruption in SDSRecord update/insert 2023-02-13 10:45:32 -08:00
TestUtils Add contacts' usernames to ContactRecord, if nothing better available 2023-02-14 13:42:53 -08:00
Util Hook together RegistrationNavigationController and RegistrationCoordinator 2023-02-17 08:00:48 -08:00
SignalServiceKit.h Swiftify OWSDisappearingMessagesFinder 2022-12-13 17:11:50 -06:00
SSKEnvironment.h Use common logic when creating web sockets 2023-01-24 14:01:34 -08:00
SSKEnvironment.m Migrate KeyBackupService to the Swift Way™️ 2023-02-02 09:42:05 -08:00
TSConstants.swift Update CDSv2 MrEnclave 2023-02-09 11:41:28 -08:00