LibWeb: Remove variable self-assignment

This commit is contained in:
Pavel Shliak 2024-10-30 15:05:47 +04:00 committed by Tim Flynn
parent 3180df3337
commit 0e9c865805
Notes: github-actions[bot] 2024-10-30 11:41:21 +00:00

View file

@ -313,7 +313,6 @@ void DisplayListRecorder::apply_backdrop_filter(Gfx::IntRect const& backdrop_reg
void DisplayListRecorder::paint_outer_box_shadow_params(PaintBoxShadowParams params)
{
params.device_content_rect = params.device_content_rect;
append(PaintOuterBoxShadow { .box_shadow_params = params });
}