Commit 46481fab by andrewlewis Committed by Andrew Lewis

Mark AudioTrackUtilV23 overriding methods with @Override.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=109093558
parent c685e279
......@@ -1201,6 +1201,7 @@ public final class AudioTrack {
setPlaybackParameters(playbackParams);
}
@Override
public void setPlaybackParameters(PlaybackParams playbackParams) {
this.playbackParams = playbackParams;
if (audioTrack != null && playbackParams != null) {
......@@ -1208,6 +1209,7 @@ public final class AudioTrack {
}
}
@Override
public float getPlaybackSpeed() {
if (playbackParams != null) {
return playbackParams.getSpeed();
......@@ -1215,5 +1217,7 @@ public final class AudioTrack {
return 1.0f;
}
}
}
}
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