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

Commit 62dd13a8 authored by Galia Peycheva's avatar Galia Peycheva
Browse files

Fix TV splash screen comment

On TV we do not want to show any splash screens

Bug: 264406731
Test: m
Change-Id: I5331b30434f6ab0e62ed61ce5c68d1957350b061
parent 0288fd63
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,12 +24,12 @@ import com.android.wm.shell.startingsurface.StartingWindowTypeAlgorithm;

/**
 * Algorithm for determining the type of a new starting window on Android TV.
 * For now we always show empty splash screens on Android TV.
 * For now we do not want to show any splash screens on Android TV.
 */
public class TvStartingWindowTypeAlgorithm implements StartingWindowTypeAlgorithm {
    @Override
    public int getSuggestedWindowType(StartingWindowInfo windowInfo) {
        // For now we want to always show empty splash screens on TV.
        // For now we do not want to show any splash screens on TV.
        return STARTING_WINDOW_TYPE_NONE;
    }
}