Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e8ff06ba authored by Johannes Gallmann's avatar Johannes Gallmann
Browse files

Fix sysui studio build

Bug: 405985610
Test: test_gradle_build.sh
Flag: EXEMPT sysui-studio fix
Change-Id: Ic2a65bab9494846336e7a33a6e33a398f0a75e62
parent bec61b1b
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -417,10 +417,8 @@ public class DesktopModeVisualIndicator {
    private List<Pair<Rect, IndicatorType>> initSmallTabletRegions(DisplayLayout layout,
            boolean isLeftRightSplit) {
        return switch (mDragStartState) {
            case DragStartState.FROM_FULLSCREEN -> initSmallTabletRegionsFromFullscreen(layout,
                    isLeftRightSplit);
            case DragStartState.FROM_SPLIT -> initSmallTabletRegionsFromSplit(layout,
                    isLeftRightSplit);
            case FROM_FULLSCREEN -> initSmallTabletRegionsFromFullscreen(layout, isLeftRightSplit);
            case FROM_SPLIT -> initSmallTabletRegionsFromSplit(layout, isLeftRightSplit);
            default -> Collections.emptyList();
        };
    }