Skip to content

Commit 4bcde6b

Browse files
committed
forgot a std.debug.print
1 parent d93695c commit 4bcde6b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/iterators.zig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ pub fn getColumnItemInQuote(comptime T: type, split_iterator: *std.mem.SplitIter
202202
var item_in_quote: []const u8 = "";
203203

204204
while (split_iterator.next()) |item| {
205-
std.debug.print("index: {}, item: {s}\n", .{ index, item });
206205
if (!in_quote and item.len > 1 and item[0] == '"' and item[item.len - 1] != '"') { // check if item is the beginning of a double quoted value
207206
in_quote = true;
208207
if (index == target_index) item_in_quote = item;

0 commit comments

Comments
 (0)