Skip to content

Commit cd2fa2f

Browse files
committed
chore(cleanse:dbg): remove left over debug output
1 parent fcc4d31 commit cd2fa2f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/common/identify_transparency.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
2121
if a > transparency_end {
2222
// the end of the transparent area
2323
margin.top = y as u16;
24-
dbg!(margin.top);
2524
break;
2625
}
2726
}
@@ -31,7 +30,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
3130
if a > transparency_end {
3231
// the end of the transparent area
3332
margin.bottom = (height - y - 1) as u16;
34-
dbg!(margin.bottom);
3533
break;
3634
}
3735
}
@@ -41,7 +39,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
4139
if a > transparency_end {
4240
// the end of the transparent area
4341
margin.left = x as u16;
44-
dbg!(margin.left);
4542
break;
4643
}
4744
}
@@ -51,7 +48,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
5148
if a > transparency_end {
5249
// the end of the transparent area
5350
margin.right = (width - x - 1) as u16;
54-
dbg!(margin.right);
5551
break;
5652
}
5753
}

0 commit comments

Comments
 (0)