Skip to content

Commit 8a327a7

Browse files
authored
RTDB Query get method must be public (#2231)
1 parent 1deb532 commit 8a327a7

File tree

1 file changed

+1
-1
lines changed
  • firebase-database/src/main/java/com/google/firebase/database

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public ChildEventListener addChildEventListener(@NonNull ChildEventListener list
167167
* connected, fall back to a locally-cached value.
168168
*/
169169
@NonNull
170-
Task<DataSnapshot> get() {
170+
public Task<DataSnapshot> get() {
171171
return repo.getValue(this);
172172
}
173173

0 commit comments

Comments
 (0)