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

Co-authored-by: mlaurencin <mlaurencin@electronjs.org>
This commit is contained in:
trop[bot]
2021-10-21 09:05:45 +09:00
committed by GitHub
parent b6c9110923
commit 93e8de87a5

View File

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