Skip to content

Commit 742807e

Browse files
committed
Address PR comments
1 parent 48800fb commit 742807e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

IdentityCore/src/MSIDBasicContext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ NS_ASSUME_NONNULL_BEGIN
3232
@property (nonatomic, nullable) NSString *logComponent;
3333
@property (nonatomic, nullable) NSString *telemetryRequestId;
3434
@property (nonatomic, nullable) NSDictionary *appRequestMetadata;
35-
@property (nonatomic, readwrite) BOOL disableFRT;
35+
@property (nonatomic) BOOL disableFRT;
3636

3737
@end
3838

IdentityCore/src/oauth2/token/MSIDFamilyRefreshToken.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
#import "MSIDRefreshToken.h"
2727

2828
@interface MSIDFamilyRefreshToken : MSIDRefreshToken
29-
{
30-
31-
}
3229

3330
- (instancetype)initWithRefreshToken:(MSIDRefreshToken *)refreshToken;
3431

IdentityCore/src/requests/MSIDInteractiveAuthorizationCodeRequest.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,8 @@ - (void)showWebComponentWithCompletion:(MSIDWebviewAuthCompletionHandler)complet
154154
- (void)updateCustomHeadersForFRTSupportIfNeeded
155155
{
156156
// This is meant to be implemented by subclasses
157+
NSAssert(NO, @"Abstract method.");
158+
return;
157159
}
158160

159161
#pragma mark - v2 code

0 commit comments

Comments
 (0)