We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51b05e6 commit be09c80Copy full SHA for be09c80
database/src/main/java/com/firebase/ui/database/FirebaseAdapter.java
@@ -1,8 +1,11 @@
1
package com.firebase.ui.database;
2
3
+import android.support.annotation.RestrictTo;
4
+
5
import com.google.firebase.database.DatabaseReference;
6
-public interface FirebaseAdapter<T> extends ChangeEventListener, SnapshotParser<T> {
7
+@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
8
+interface FirebaseAdapter<T> extends ChangeEventListener, SnapshotParser<T> {
9
10
/**
11
* If you need to do some setup before the adapter starts listening for change events in the
0 commit comments