Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openid/AppAuth-iOS
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: interactive-pioneers/AppAuth-iOS
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 15, 2019

  1. Merge pull request #1 from openid/ios13beta

    update fork
    flashspys authored Aug 15, 2019
    Copy the full SHA
    7ff79b7 View commit details
  2. Copy the full SHA
    50883d5 View commit details
  3. Copy the full SHA
    a4c23f3 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 Source/iOS/OIDExternalUserAgentIOS.h
  2. +2 −2 Source/iOS/OIDExternalUserAgentIOS.m
4 changes: 2 additions & 2 deletions Source/iOS/OIDExternalUserAgentIOS.h
Original file line number Diff line number Diff line change
@@ -31,13 +31,13 @@ NS_ASSUME_NONNULL_BEGIN

/*! @brief The convenience initializer for devices with iOS 11+
*/
- (nullable instancetype)init API_AVAILABLE(ios(11));
- (instancetype)init API_AVAILABLE(ios(11));

/*! @brief The designated initializer.
@param presentingViewController The view controller from which to present the
\SFSafariViewController.
*/
- (nullable instancetype)initWithPresentingViewController:
- (instancetype)initWithPresentingViewController:
(nullable UIViewController *)presentingViewController
NS_DESIGNATED_INITIALIZER;

4 changes: 2 additions & 2 deletions Source/iOS/OIDExternalUserAgentIOS.m
Original file line number Diff line number Diff line change
@@ -48,11 +48,11 @@ @implementation OIDExternalUserAgentIOS {
#pragma clang diagnostic pop
}

- (nullable instancetype)init {
- (instancetype)init {
return [self initWithPresentingViewController:nil];
}

- (nullable instancetype)initWithPresentingViewController:
- (instancetype)initWithPresentingViewController:
(nullable UIViewController *)presentingViewController {
self = [super init];
if (self) {