Simplify dock setup state setting

The resumed state is no longer necessary, as this has been merged with
the started state.

Bug: 227649823
Test: locally on device
Change-Id: If6229dac0f121011f872fda5f06380c9fd909c4a
This commit is contained in:
Lucas Silva
2022-05-04 11:48:23 -04:00
parent 3c803c924f
commit 384bac3fc7

View File

@@ -9172,14 +9172,6 @@ public final class Settings {
*/
public static final int DOCK_SETUP_PAUSED = 2;
/**
* Indicates that the dock setup has resumed snoozing but the user hasn't started it yet.
* One of the possible states for {@link #DOCK_SETUP_STATE}.
*
* @hide
*/
public static final int DOCK_SETUP_RESUMED = 3;
/**
* Indicates that the user has completed dock setup.
* One of the possible states for {@link #DOCK_SETUP_STATE}.
@@ -9194,7 +9186,6 @@ public final class Settings {
DOCK_SETUP_NOT_STARTED,
DOCK_SETUP_STARTED,
DOCK_SETUP_PAUSED,
DOCK_SETUP_RESUMED,
DOCK_SETUP_COMPLETED
})
public @interface DockSetupState {