Skip to content

Commit 3883034

Browse files
committed
remove operationQueue changes
1 parent 91aa4ad commit 3883034

File tree

3 files changed

+0
-33
lines changed

3 files changed

+0
-33
lines changed

Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
// experiment
1717

1818
#import "Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h"
19-
#import "Crashlytics/Crashlytics/Private/FIRCLSInternalReport_Private.h"
2019

2120
#import "Crashlytics/Crashlytics/Helpers/FIRCLSFile.h"
2221
#import "Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h"
@@ -54,8 +53,6 @@ @interface FIRCLSInternalReport () {
5453

5554
@implementation FIRCLSInternalReport
5655

57-
@synthesize operationQueue = _operationQueue;
58-
5956
+ (instancetype)reportWithPath:(NSString *)path {
6057
return [[self alloc] initWithPath:path];
6158
}

Crashlytics/Crashlytics/Private/FIRCLSInternalReport_Private.h

Lines changed: 0 additions & 25 deletions
This file was deleted.

Crashlytics/UnitTests/FIRCrashlyticsReportTests.m

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#import "Crashlytics/Crashlytics/Components/FIRCLSGlobals.h"
2020
#import "Crashlytics/Crashlytics/Helpers/FIRCLSFile.h"
2121
#import "Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h"
22-
#import "Crashlytics/Crashlytics/Private/FIRCLSInternalReport_Private.h"
2322
#import "Crashlytics/Crashlytics/Private/FIRCrashlyticsReport_Private.h"
2423
#import "Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlyticsReport.h"
2524

@@ -245,7 +244,6 @@ - (void)testCustomKeysLimits {
245244
NSString *key = [NSString stringWithFormat:@"key_%i", i];
246245
[report setCustomValue:@"hello" forKey:key];
247246
}
248-
[report.internalReport.operationQueue waitUntilAllOperationsAreFinished];
249247

250248
NSArray *entriesI = FIRCLSFileReadSections(
251249
[[report.internalReport pathForContentFile:FIRCLSReportUserIncrementalKVFile]
@@ -267,7 +265,6 @@ - (void)testLogsNoExisting {
267265

268266
[report log:@"Normal log without formatting"];
269267
[report logWithFormat:@"%@, %@", @"First", @"Second"];
270-
[report.internalReport.operationQueue waitUntilAllOperationsAreFinished];
271268

272269
NSArray *entries = FIRCLSFileReadSections(
273270
[[report.internalReport pathForContentFile:FIRCLSReportLogAFile] fileSystemRepresentation],
@@ -286,7 +283,6 @@ - (void)testLogsWithExisting {
286283

287284
[report log:@"Normal log without formatting"];
288285
[report logWithFormat:@"%@, %@", @"First", @"Second"];
289-
[report.internalReport.operationQueue waitUntilAllOperationsAreFinished];
290286

291287
NSArray *entries = FIRCLSFileReadSections(
292288
[[report.internalReport pathForContentFile:FIRCLSReportLogAFile] fileSystemRepresentation],
@@ -306,7 +302,6 @@ - (void)testLogLimits {
306302
for (int i = 0; i < 2000; i++) {
307303
[report log:@"0123456789"];
308304
}
309-
[report.internalReport.operationQueue waitUntilAllOperationsAreFinished];
310305

311306
unsigned long long sizeA = [[[NSFileManager defaultManager]
312307
attributesOfItemAtPath:[report.internalReport pathForContentFile:FIRCLSReportLogAFile]

0 commit comments

Comments
 (0)