1 package com.android.onboarding.versions.annotations 2 3 /** Reasons that a change may break existing callers. */ 4 enum class BreakingReason { 5 6 /** The change introduces a new return value to an existing API. */ 7 NEW_RETURN_VALUE 8 } 9
1 package com.android.onboarding.versions.annotations 2 3 /** Reasons that a change may break existing callers. */ 4 enum class BreakingReason { 5 6 /** The change introduces a new return value to an existing API. */ 7 NEW_RETURN_VALUE 8 } 9