File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/firestore/src/api Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ export class ArrayUnionFieldValueImpl extends FieldValueImpl {
115
115
116
116
isEqual ( other : FieldValue ) : boolean {
117
117
// TODO(mrschmidt): Implement isEquals
118
- return false ;
118
+ return this === other ;
119
119
}
120
120
}
121
121
@@ -141,7 +141,7 @@ export class ArrayRemoveFieldValueImpl extends FieldValueImpl {
141
141
142
142
isEqual ( other : FieldValue ) : boolean {
143
143
// TODO(mrschmidt): Implement isEquals
144
- return false ;
144
+ return this === other ;
145
145
}
146
146
}
147
147
@@ -162,7 +162,7 @@ export class NumericIncrementFieldValueImpl extends FieldValueImpl {
162
162
163
163
isEqual ( other : FieldValue ) : boolean {
164
164
// TODO(mrschmidt): Implement isEquals
165
- return false ;
165
+ return this === other ;
166
166
}
167
167
}
168
168
You can’t perform that action at this time.
0 commit comments