File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ - (id)convertedValue:(FieldValue)value options:(const FieldValueOptions &)option
218
218
case FieldValue::Type::Double:
219
219
return @(value.double_value ());
220
220
case FieldValue::Type::Timestamp:
221
- return [self convertedTimestamp: value options: options ];
221
+ return [self convertedTimestamp: value];
222
222
case FieldValue::Type::ServerTimestamp:
223
223
return [self convertedServerTimestamp: value options: options];
224
224
case FieldValue::Type::String:
@@ -238,7 +238,7 @@ - (id)convertedValue:(FieldValue)value options:(const FieldValueOptions &)option
238
238
UNREACHABLE ();
239
239
}
240
240
241
- - (id )convertedTimestamp : (const FieldValue &)value options : ( const FieldValueOptions &) options {
241
+ - (id )convertedTimestamp : (const FieldValue &)value {
242
242
return MakeFIRTimestamp (value.timestamp_value ());
243
243
}
244
244
@@ -250,7 +250,7 @@ - (id)convertedServerTimestamp:(const FieldValue &)value
250
250
return [NSNull null ];
251
251
case ServerTimestampBehavior::kEstimate : {
252
252
FieldValue local_write_time = FieldValue::FromTimestamp (sts.local_write_time ());
253
- return [self convertedTimestamp: local_write_time options: options ];
253
+ return [self convertedTimestamp: local_write_time];
254
254
}
255
255
case ServerTimestampBehavior::kPrevious :
256
256
return sts.previous_value () ? [self convertedValue: *sts.previous_value () options: options]
You can’t perform that action at this time.
0 commit comments