• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.onboarding.versions.annotations
2 
3 /** The reason why this change can follow the expedited release process. */
4 enum class ExpeditedReason {
5   /** The change will not follow the expedited release process. */
6   NOT_EXPEDITED,
7 
8   /** DO NOT USE - only available for use by tests until we have a real non-NOT_EXPEDITED reason. */
9   TMP
10 }
11