Skip to content

Commit dfb061e

Browse files
committed
Fixes
1 parent 75be014 commit dfb061e

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Crashlytics/Crashlytics/Components/FIRCLSContext.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ FIRCLSContextInitData FIRCLSContextBuildInitData(FIRCLSInternalReport* report,
6161

6262
memset(&initData, 0, sizeof(FIRCLSContextInitData));
6363

64-
initData.customBundleId = NULL;
64+
initData.customBundleId = nil;
6565
initData.installId = [installIDModel.installID UTF8String];
6666
initData.sessionId = [[report identifier] UTF8String];
6767
initData.rootPath = [[report path] UTF8String];
@@ -78,7 +78,7 @@ FIRCLSContextInitData FIRCLSContextBuildInitData(FIRCLSInternalReport* report,
7878
// we're going to leave this disabled. It does work in the exception case, but will ultimtely
7979
// result in the following crash to be discared. Usually that crash isn't interesting. But, if it
8080
// was, we'd never have a chance to see it.
81-
initData.delegate = NULL;
81+
initData.delegate = nil;
8282

8383
#if CLS_MACH_EXCEPTION_SUPPORTED
8484
__block exception_mask_t mask = 0;

Crashlytics/Crashlytics/Public/FIRExceptionModel.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ NS_SWIFT_NAME(ExceptionModel)
2727
@interface FIRExceptionModel : NSObject
2828

2929
- (instancetype)init NS_UNAVAILABLE;
30-
+ (instancetype)new NS_UNAVAILABLE;
3130

3231
/**
3332
* Initializes an Exception Model model with the given required fields.

Crashlytics/Crashlytics/Public/FIRStackFrame.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ NS_SWIFT_NAME(StackFrame)
2424
@interface FIRStackFrame : NSObject
2525

2626
- (instancetype)init NS_UNAVAILABLE;
27-
+ (instancetype)new NS_UNAVAILABLE;
2827

2928
/**
3029
* Initializes a symbolicated Stack Frame with the given required fields. Symbolicated

0 commit comments

Comments
 (0)