Remove useless comment

This commit is contained in:
Clément Renault 2023-10-24 10:21:47 +02:00 committed by Louis Dureuil
parent 77dcbff6b2
commit 576fa9c6da
No known key found for this signature in database

View File

@ -38,9 +38,6 @@ pub fn extract_geo_points<R: io::Read + io::Seek>(
serde_json::from_slice(document_id).unwrap()
};
// HELP we will receive two DelAdds here, one for the lat and one for the lng
// what happens if there is a missing Del or Add for one of them?
// first we get the two fields
match (obkv.get(lat_fid), obkv.get(lng_fid)) {
(Some(lat), Some(lng)) => {