From 121606825533394c7dea518b872c1e40c0905803 Mon Sep 17 00:00:00 2001 From: olly Date: Fri, 23 Nov 2018 16:55:26 +0000 Subject: [PATCH] Add Lint.IfChange/ThenChange for repeat modes PiperOrigin-RevId: 222630411 --- .../java/com/google/android/exoplayer2/util/RepeatModeUtil.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/util/RepeatModeUtil.java b/library/core/src/main/java/com/google/android/exoplayer2/util/RepeatModeUtil.java index 5816e40623..cc23c9763c 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/util/RepeatModeUtil.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/util/RepeatModeUtil.java @@ -26,6 +26,7 @@ import java.lang.annotation.RetentionPolicy; */ public final class RepeatModeUtil { + // LINT.IfChange /** * Set of repeat toggle modes. Can be combined using bit-wise operations. Possible flag values are * {@link #REPEAT_TOGGLE_MODE_NONE}, {@link #REPEAT_TOGGLE_MODE_ONE} and {@link @@ -47,6 +48,7 @@ public final class RepeatModeUtil { public static final int REPEAT_TOGGLE_MODE_ONE = 1; /** "Repeat All" button enabled. */ public static final int REPEAT_TOGGLE_MODE_ALL = 1 << 1; // 2 + // LINT.ThenChange(../../../../../../../../../ui/src/main/res/values/attrs.xml) private RepeatModeUtil() { // Prevent instantiation.