go/libraries/doltcore/table/untyped/xlsx: Fix bug where this spammed internal representation of the imported rows to Stdout.

These lines were not visible from the CLI because of color, but it still cost
performance. In an embedded context, these could end up in stdout.
This commit is contained in:
Aaron Son
2021-11-23 09:18:43 -08:00
parent ed9fd73564
commit 05ce1a453a

View File

@@ -99,7 +99,6 @@ func decodeXLSXRows(ctx context.Context, vrw types.ValueReadWriter, xlData [][][
}
rows = append(rows, r)
fmt.Println(rows)
}
}