Skip to content

Commit

Permalink
Remove support for 32-bit macOS from EndSession models
Browse files Browse the repository at this point in the history
Mirroring changes made in eb59c89.
  • Loading branch information
WilliamDenniss committed Jun 10, 2019
1 parent d5e8f6a commit ea5ad45
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 22 deletions.
8 changes: 1 addition & 7 deletions Source/OIDEndSessionRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,7 @@
NS_ASSUME_NONNULL_BEGIN

@interface OIDEndSessionRequest : NSObject
<NSCopying, NSSecureCoding, OIDExternalUserAgentRequest> {
OIDServiceConfiguration *_configuration;
NSURL *_postLogoutRedirectURL;
NSString *_idTokenHint;
NSString *_state;
NSDictionary<NSString *, NSString *> *_additionalParameters;
}
<NSCopying, NSSecureCoding, OIDExternalUserAgentRequest>

/*! @brief The service's configuration.
@remarks This configuration specifies how to connect to a particular OAuth provider.
Expand Down
6 changes: 0 additions & 6 deletions Source/OIDEndSessionRequest.m
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,6 @@

@implementation OIDEndSessionRequest

@synthesize configuration = _configuration;
@synthesize postLogoutRedirectURL = _postLogoutRedirectURL;
@synthesize idTokenHint = _idTokenHint;
@synthesize state = _state;
@synthesize additionalParameters = _additionalParameters;

- (instancetype)init
OID_UNAVAILABLE_USE_INITIALIZER(
@selector(initWithConfiguration:
Expand Down
6 changes: 1 addition & 5 deletions Source/OIDEndSessionResponse.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,7 @@ NS_ASSUME_NONNULL_BEGIN
@see http://openid.net/specs/openid-connect-session-1_0.html#RPLogout
*/

@interface OIDEndSessionResponse : NSObject <NSCopying, NSSecureCoding> {
OIDEndSessionRequest *_request;
NSString *_state;
NSDictionary<NSString *, NSObject<NSCopying> *> *additionalParameters;
}
@interface OIDEndSessionResponse : NSObject <NSCopying, NSSecureCoding>

/*! @brief The request which was serviced.
*/
Expand Down
4 changes: 0 additions & 4 deletions Source/OIDEndSessionResponse.m
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@

@implementation OIDEndSessionResponse

@synthesize request = _request;
@synthesize state = _state;
@synthesize additionalParameters = _additionalParameters;

#pragma mark - Initializers

- (instancetype)init
Expand Down

0 comments on commit ea5ad45

Please sign in to comment.