Skip to content

Commit fdc24d0

Browse files
committed
style
1 parent af68b1f commit fdc24d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

FirebaseRemoteConfig/Sources/RCNConfigDBManager.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,8 @@ - (void)deleteRecordWithBundleIdentifier:(NSString *)bundleIdentifier
11091109
if (!strongSelf) {
11101110
return;
11111111
}
1112-
const char *SQL = "DELETE FROM " RCNTableNameMetadata " WHERE bundle_identifier = ? and namespace = ?";
1112+
const char *SQL =
1113+
"DELETE FROM " RCNTableNameMetadata " WHERE bundle_identifier = ? and namespace = ?";
11131114
NSArray *params = @[ bundleIdentifier, namespace ];
11141115
[strongSelf executeQuery:SQL withParams:params];
11151116
});

FirebaseRemoteConfig/Sources/RCNConfigSettings.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,7 @@ - (void)updateFetchTimeWithSuccessFetch:(BOOL)isSuccessfulFetch {
272272
}
273273

274274
- (void)updateMetadataTable {
275-
[_DBManager deleteRecordWithBundleIdentifier:_bundleIdentifier
276-
namespace:_FIRNamespace];
275+
[_DBManager deleteRecordWithBundleIdentifier:_bundleIdentifier namespace:_FIRNamespace];
277276
NSError *error;
278277
// Objects to be serialized cannot be invalid.
279278
if (!_bundleIdentifier) {

0 commit comments

Comments
 (0)