Skip to content

Commit ffb4855

Browse files
committed
fix(de_mut): remove debug print
Signed-off-by: Woshiluo Luo <woshiluo.luo@outlook.com>
1 parent c44e247 commit ffb4855

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/de_mut/reg.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ impl Iterator for RegIter<'_> {
8585
type Item = RegRegion;
8686

8787
fn next(&mut self) -> Option<Self::Item> {
88-
println!("{:?}", self.config.address_cells);
89-
println!("{:?}", self.config.size_cells);
9088
let len = BLOCK_LEN * (self.config.address_cells + self.config.size_cells);
9189
if self.data.len() >= len {
9290
let (current_block, data) = self.data.split_at(len);

0 commit comments

Comments
 (0)