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 3bdf63a commit a590590Copy full SHA for a590590
firebase-database/src/main/java/com/google/firebase/database/core/view/View.java
@@ -101,8 +101,6 @@ public Node getCompleteServerCache(Path path) {
101
if (cache != null) {
102
// If this isn't a "loadsAllData" view, then cache isn't actually a complete cache and
103
// we need to see if it contains the child we're interested in.
104
- // Clarify: just because this is a loadsAllData() doesn't mean that it'll contain the child,
105
- // right?
106
if (this.query.loadsAllData()
107
|| (!path.isEmpty() && !cache.getImmediateChild(path.getFront()).isEmpty())) {
108
return cache.getChild(path);
0 commit comments