Skip to content

Commit 3566987

Browse files
authored
Remove unused method (#8115)
1 parent ea9b1a6 commit 3566987

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

Crashlytics/Crashlytics/Components/FIRCLSProcess.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ bool FIRCLSProcessInit(FIRCLSProcess *process, thread_t crashedThread, void *uap
5757
return true;
5858
}
5959

60-
bool FIRCLSProcessDestroy(FIRCLSProcess *process) {
61-
return false;
62-
}
63-
6460
// https://developer.apple.com/library/mac/#qa/qa2004/qa1361.html
6561
bool FIRCLSProcessDebuggerAttached(void) {
6662
int junk;

Crashlytics/Crashlytics/Components/FIRCLSProcess.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ typedef struct {
3232
} FIRCLSProcess;
3333

3434
bool FIRCLSProcessInit(FIRCLSProcess *process, thread_t crashedThread, void *uapVoid);
35-
bool FIRCLSProcessDestroy(FIRCLSProcess *process);
3635
bool FIRCLSProcessDebuggerAttached(void);
3736

3837
bool FIRCLSProcessSuspendAllOtherThreads(FIRCLSProcess *process);

Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ void FIRCLSHandler(FIRCLSFile* file, thread_t crashedThread, void* uapVoid) {
4646
FIRCLSCreateCrashedMarkerFile();
4747

4848
FIRCLSProcessResumeAllOtherThreads(&process);
49-
50-
// clean up after ourselves
51-
FIRCLSProcessDestroy(&process);
5249
}
5350

5451
void FIRCLSHandlerAttemptImmediateDelivery(void) {

0 commit comments

Comments
 (0)