Signal-iOS/SignalMessaging/Subscriptions
Evan Hahn 67ea0d0516 Fix some trivial compiler warnings
This fixes 10 of our Xcode warnings:

- `MessageReactionPicker.swift` was declaring a variable and not using
  it, leading to "Immutable value 'emoji' was never used". I simply
  removed it.
- `Stripe.swift` had a bunch of unnecessary `public`s, which caused
  "'public' modifier is redundant for static property declared in a
  public extension".
- `SubscriptionManager.swift` had an unnecessary `try`, causing "No
  calls to throwing functions occur within 'try' expression".
- `CallService.swift:696` was calling a function and not using its
  result, so I annotated that function with `@discardableResult`.
- `MobileCoinAPI+Configuration.swift` declared a variable with `var`
  that should've used `let`.

Nothing major here, but wanted to find ones that were easy to fix.
2022-04-19 09:28:15 -05:00
..
DonationUtilities.swift replaced NSLocalizedStringFromAppBundle with OWSLocalizedString 2022-03-08 10:17:25 +01:00
Stripe.swift Fix some trivial compiler warnings 2022-04-19 09:28:15 -05:00
SubscriptionManager.swift Fix some trivial compiler warnings 2022-04-19 09:28:15 -05:00
SubscriptionReceiptCredentialRedemptionJob.swift Add "Donation Receipts" view 2022-04-11 16:21:12 -05:00