Skip to content

Commit 1a151bb

Browse files
committed
Hide new constants
1 parent b307898 commit 1a151bb

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

firebase-database/src/main/java/com/google/firebase/database/FirebaseDatabase.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import com.google.firebase.database.core.utilities.Utilities;
3131
import com.google.firebase.database.core.utilities.Validation;
3232
import com.google.firebase.emulators.EmulatedServiceSettings;
33+
import com.google.firebase.emulators.EmulatorSettings;
3334
import com.google.firebase.emulators.FirebaseEmulator;
3435

3536
/**
@@ -39,6 +40,13 @@
3940
*/
4041
public class FirebaseDatabase {
4142

43+
/**
44+
* Emulator identifier. See {@link FirebaseApp#enableEmulators(EmulatorSettings)}
45+
*
46+
* <p>TODO(samstern): Un-hide this once Firestore, Database, and Functions are implemented
47+
*
48+
* @hide
49+
*/
4250
public static final FirebaseEmulator EMULATOR = FirebaseEmulator.forName("database");
4351

4452
private static final String SDK_VERSION = BuildConfig.VERSION_NAME;

firebase-firestore/src/main/java/com/google/firebase/firestore/FirebaseFirestore.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,13 @@
5858
*/
5959
public class FirebaseFirestore {
6060

61-
/** Emulator identifier. See {@link FirebaseApp#enableEmulators(EmulatorSettings)} */
61+
/**
62+
* Emulator identifier. See {@link FirebaseApp#enableEmulators(EmulatorSettings)}
63+
*
64+
* <p>TODO(samstern): Un-hide this once Firestore, Database, and Functions are implemented
65+
*
66+
* @hide
67+
*/
6268
public static FirebaseEmulator EMULATOR = FirebaseEmulator.forName("firestore");
6369

6470
/**

0 commit comments

Comments
 (0)