fix: remove 'NOTREACHED()' from 'GetWindowResizeEdge' (#31470)

This commit is contained in:
Michaela Laurencin
2021-10-19 09:19:04 -07:00
committed by GitHub
parent 8364375347
commit a2d993c9b4

View File

@@ -158,7 +158,6 @@ gfx::ResizeEdge GetWindowResizeEdge(WPARAM param) {
case WMSZ_BOTTOMRIGHT:
return gfx::ResizeEdge::kBottomRight;
default:
NOTREACHED();
return gfx::ResizeEdge::kBottomRight;
}
}