mirror of
https://github.com/samsonjs/media.git
synced 2026-03-28 09:55:48 +00:00
Add @IntDef annotations to DefaultEventListener
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=170980737
This commit is contained in:
parent
b3d462df39
commit
498ff14439
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue