From 576fa9c6da0567e73b9598b5ca51f76a1bfd2c6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Tue, 24 Oct 2023 10:21:47 +0200 Subject: [PATCH] Remove useless comment --- milli/src/update/index_documents/extract/extract_geo_points.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/milli/src/update/index_documents/extract/extract_geo_points.rs b/milli/src/update/index_documents/extract/extract_geo_points.rs index cc283121e..5ee7967d2 100644 --- a/milli/src/update/index_documents/extract/extract_geo_points.rs +++ b/milli/src/update/index_documents/extract/extract_geo_points.rs @@ -38,9 +38,6 @@ pub fn extract_geo_points( 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)) => {