Merge pull request #273 from lightpanda-io/nodelist-iterator

nodelist: remove debug log
This commit is contained in:
Pierre Tachoire
2024-09-25 09:51:00 +02:00
committed by GitHub

View File

@@ -156,21 +156,18 @@ pub const NodeList = struct {
} }
pub fn _keys(self: *NodeList) U32Iterator { pub fn _keys(self: *NodeList) U32Iterator {
log.debug("keys", .{});
return .{ return .{
.length = self.get_length(), .length = self.get_length(),
}; };
} }
pub fn _values(self: *NodeList) NodeListIterator { pub fn _values(self: *NodeList) NodeListIterator {
log.debug("values", .{});
return .{ return .{
.coll = self, .coll = self,
}; };
} }
pub fn _symbol_iterator(self: *NodeList) NodeListIterator { pub fn _symbol_iterator(self: *NodeList) NodeListIterator {
log.debug("symbol", .{});
return self._values(); return self._values();
} }