Skip to content

Commit

Permalink
forgot a std.debug.print
Browse files Browse the repository at this point in the history
  • Loading branch information
0x546F6D committed Jan 27, 2025
1 parent d93695c commit 4bcde6b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/iterators.zig
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ pub fn getColumnItemInQuote(comptime T: type, split_iterator: *std.mem.SplitIter
var item_in_quote: []const u8 = "";

while (split_iterator.next()) |item| {
std.debug.print("index: {}, item: {s}\n", .{ index, item });
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
in_quote = true;
if (index == target_index) item_in_quote = item;
Expand Down

0 comments on commit 4bcde6b

Please sign in to comment.