refactor: remove debug print statements for Mq parsing

This commit is contained in:
Marco Pedone 2025-11-25 12:15:08 +01:00
parent 6118ba505b
commit 4c4397d0ee
2 changed files with 0 additions and 2 deletions

View file

@ -124,7 +124,6 @@ func extractData_bkp(annuncio typesdefs.AnnuncioBKP, extractedData chan typesdef
if annuncio.Mq != nil {
replaced := strings.ReplaceAll(*annuncio.Mq, ",", ".")
if s, err := strconv.ParseFloat(replaced, 64); err == nil {
fmt.Printf("%T, %v\n", s, s)
tmp.Mq = &s
}

View file

@ -370,7 +370,6 @@ func processDatiImmobile(tmp *typesdefs.AnnuncioParsed, annuncio *typesdefs.Annu
if annuncio.Mq != nil {
replaced := strings.ReplaceAll(*annuncio.Mq, ",", ".")
if s, err := strconv.ParseFloat(replaced, 64); err == nil {
fmt.Printf("%T, %v\n", s, s)
tmp.Mq = &s
}