Skip to content

Commit 3b9570b

Browse files
committed
Leftover code
1 parent aebc1a6 commit 3b9570b

File tree

5 files changed

+33
-18
lines changed

5 files changed

+33
-18
lines changed

Example/tvOSSample/tvOSSample/AuthViewController.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import UIKit
1616
import FirebaseAuth
1717

1818
class AuthViewController: UIViewController {
19+
1920
// MARK: - User Interface
2021

2122
/// A stackview containing all of the buttons to providers (Email, OAuth, etc).

Example/tvOSSample/tvOSSample/EmailLoginViewController.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ protocol EmailLoginDelegate {
2121
}
2222

2323
class EmailLoginViewController: UIViewController {
24+
2425
// MARK: - Public Properties
2526

2627
var delegate: EmailLoginDelegate?

Firestore/Example/App/GoogleService-Info.plist

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,39 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>API_KEY</key>
6-
<string>correct_api_key</string>
7-
<key>TRACKING_ID</key>
8-
<string>correct_tracking_id</string>
5+
<key>AD_UNIT_ID_FOR_BANNER_TEST</key>
6+
<string>ca-app-pub-3940256099942544/2934735716</string>
7+
<key>AD_UNIT_ID_FOR_INTERSTITIAL_TEST</key>
8+
<string>ca-app-pub-3940256099942544/4411468910</string>
99
<key>CLIENT_ID</key>
10-
<string>correct_client_id</string>
10+
<string>528851634296-sst5a6vl2n5dvpu5q4a9rv57lkq2egna.apps.googleusercontent.com</string>
1111
<key>REVERSED_CLIENT_ID</key>
12-
<string>correct_reversed_client_id</string>
13-
<key>GOOGLE_APP_ID</key>
14-
<string>1:123:ios:123abc</string>
12+
<string>com.googleusercontent.apps.528851634296-sst5a6vl2n5dvpu5q4a9rv57lkq2egna</string>
13+
<key>API_KEY</key>
14+
<string>AIzaSyDDBrGQBviEYs8CWdgNW4Uyl244A3Dhlyk</string>
1515
<key>GCM_SENDER_ID</key>
16-
<string>correct_gcm_sender_id</string>
16+
<string>528851634296</string>
1717
<key>PLIST_VERSION</key>
1818
<string>1</string>
1919
<key>BUNDLE_ID</key>
20-
<string>com.google.FirebaseSDKTests</string>
20+
<string>com.firebase.FirestoreExample</string>
2121
<key>PROJECT_ID</key>
22-
<string>abc-xyz-123</string>
23-
<key>DATABASE_URL</key>
24-
<string>https://abc-xyz-123.firebaseio.com</string>
22+
<string>varconst-6</string>
2523
<key>STORAGE_BUCKET</key>
26-
<string>project-id-123.storage.firebase.com</string>
24+
<string>varconst-6.appspot.com</string>
25+
<key>IS_ADS_ENABLED</key>
26+
<true></true>
27+
<key>IS_ANALYTICS_ENABLED</key>
28+
<false></false>
29+
<key>IS_APPINVITE_ENABLED</key>
30+
<false></false>
31+
<key>IS_GCM_ENABLED</key>
32+
<true></true>
33+
<key>IS_SIGNIN_ENABLED</key>
34+
<true></true>
35+
<key>GOOGLE_APP_ID</key>
36+
<string>1:528851634296:ios:0459a01df1082630</string>
37+
<key>DATABASE_URL</key>
38+
<string>https://varconst-6.firebaseio.com</string>
2739
</dict>
28-
</plist>
40+
</plist>

Firestore/core/src/firebase/firestore/local/leveldb_migrations.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ void RemoveLastAcknowledgedBatchID(leveldb::DB* db) {
213213
Writer writer = Writer::Wrap(&bytes);
214214
writer.WriteNanopbMessage(firestore_client_MutationQueue_fields,
215215
&mutation_queue);
216-
// transaction.Delete(it->key());
217216
transaction.Put(LevelDbMutationQueueKey::Key(key.user_id()),
218217
std::move(bytes));
219218
}

Firestore/core/src/firebase/firestore/model/field_value.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,8 @@ void FieldValue::SwitchTo(const Type type) {
466466
case Type::Object:
467467
object_value_.internal_value.~map();
468468
break;
469-
default: {} // The other types where there is nothing to worry about.
469+
default: {
470+
} // The other types where there is nothing to worry about.
470471
}
471472
tag_ = type;
472473
// Must call constructor explicitly for any non-POD type to initialize.
@@ -497,7 +498,8 @@ void FieldValue::SwitchTo(const Type type) {
497498
case Type::Object:
498499
new (&object_value_) ObjectValue{};
499500
break;
500-
default: {} // The other types where there is nothing to worry about.
501+
default: {
502+
} // The other types where there is nothing to worry about.
501503
}
502504
}
503505

0 commit comments

Comments
 (0)