Commit 498ff144 by andrewlewis Committed by Oliver Woodman

Add @IntDef annotations to DefaultEventListener

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=170980737
parent b3d462df
......@@ -169,7 +169,7 @@ public interface Player {
}
@Override
public void onRepeatModeChanged(int repeatMode) {
public void onRepeatModeChanged(@RepeatMode int repeatMode) {
// Do nothing.
}
......@@ -184,7 +184,7 @@ public interface Player {
}
@Override
public void onPositionDiscontinuity(int reason) {
public void onPositionDiscontinuity(@DiscontinuityReason int reason) {
// Do nothing.
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment