Skip to content

Commit 35830ed

Browse files
committed
fix format issues
1 parent a1b1198 commit 35830ed

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

FirebaseMessaging/Sources/FIRMessagingRmqManager.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ - (void)openDatabase {
501501
#ifdef SQLITE_OPEN_FILEPROTECTION_NONE
502502
flags |= SQLITE_OPEN_FILEPROTECTION_NONE;
503503
#endif
504-
int result = sqlite3_open_v2([path UTF8String], &self -> _database, flags, NULL);
504+
int result = sqlite3_open_v2([path UTF8String], &self->_database, flags, NULL);
505505
if (result != SQLITE_OK) {
506506
NSString *errorString = FIRMessagingStringFromSQLiteResult(result);
507507
NSString *errorMessage = [NSString
@@ -522,7 +522,7 @@ - (void)openDatabase {
522522
#ifdef SQLITE_OPEN_FILEPROTECTION_NONE
523523
flags |= SQLITE_OPEN_FILEPROTECTION_NONE;
524524
#endif
525-
int result = sqlite3_open_v2([path UTF8String], &self -> _database, flags, NULL);
525+
int result = sqlite3_open_v2([path UTF8String], &self->_database, flags, NULL);
526526
if (result != SQLITE_OK) {
527527
NSString *errorString = FIRMessagingStringFromSQLiteResult(result);
528528
NSString *errorMessage =

Firestore/core/src/api/pipeline_result_change.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2025 Google
2+
* Copyright 2025 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

Firestore/core/src/api/pipeline_result_change.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2025 Google
2+
* Copyright 2025 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

Firestore/core/src/api/realtime_pipeline_snapshot.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2025 Google
2+
* Copyright 2025 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)