Skip to content

Commit d1aab89

Browse files
committed
remove prints and extra whitespace
1 parent b03968a commit d1aab89

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

shared-module/displayio/Group.c

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -381,13 +381,7 @@ void displayio_group_construct(displayio_group_t *self, mp_obj_list_t *members,
381381
bool displayio_group_fill_area(displayio_group_t *self, const _displayio_colorspace_t *colorspace, const displayio_area_t *area, uint32_t *mask, uint32_t *buffer) {
382382
// Track if any of the layers finishes filling in the given area. We can ignore any remaining
383383
// layers at that point.
384-
//mp_printf(&mp_plat_print, "inside fill area \n");
385-
//mp_printf(&mp_plat_print, "%d \n", self->hidden);
386-
//mp_printf(&mp_plat_print, "\n");
387-
388-
//mp_printf(&mp_plat_print, "inside fill area \n");
389384
if (self->hidden == false){
390-
//mp_printf(&mp_plat_print, "not hidden\n");
391385
for (int32_t i = self->members->len - 1; i >= 0; i--) {
392386
mp_obj_t layer;
393387
#if CIRCUITPY_VECTORIO
@@ -418,8 +412,6 @@ bool displayio_group_fill_area(displayio_group_t *self, const _displayio_colorsp
418412
}
419413
}
420414
}
421-
422-
423415
return false;
424416
}
425417

0 commit comments

Comments
 (0)