summaryrefslogtreecommitdiff
path: root/src/com/android/onboarding/versions/annotations/ExpeditedReason.kt
blob: 2e9169bd3d0e92cd72225d65b0835620067edb27 (plain)
1
2
3
4
5
6
7
8
9
10
package com.android.onboarding.versions.annotations

/** The reason why this change can follow the expedited release process. */
enum class ExpeditedReason {
  /** The change will not follow the expedited release process. */
  NOT_EXPEDITED,

  /** DO NOT USE - only available for use by tests until we have a real non-NOT_EXPEDITED reason. */
  TMP
}