Skip to content

Commit 371c462

Browse files
committed
Format file
1 parent ae4bfae commit 371c462

File tree

1 file changed

+6
-5
lines changed
  • packages/video_player/video_player_android/android/src/main/java/io/flutter/plugins/videoplayer

1 file changed

+6
-5
lines changed

packages/video_player/video_player_android/android/src/main/java/io/flutter/plugins/videoplayer/ExoPlayerState.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@ public final class ExoPlayerState {
2525
* @param exoPlayer the active player instance.
2626
* @return an opaque object representing the state.
2727
*/
28-
@NonNull public static ExoPlayerState save(@NonNull ExoPlayer exoPlayer) {
28+
@NonNull
29+
public static ExoPlayerState save(@NonNull ExoPlayer exoPlayer) {
2930
return new ExoPlayerState(
30-
/*position=*/ exoPlayer.getCurrentPosition(),
31-
/*repeatMode=*/ exoPlayer.getRepeatMode(),
32-
/*volume=*/ exoPlayer.getVolume(),
33-
/*playbackParameters=*/ exoPlayer.getPlaybackParameters());
31+
/* position= */ exoPlayer.getCurrentPosition(),
32+
/* repeatMode= */ exoPlayer.getRepeatMode(),
33+
/* volume= */ exoPlayer.getVolume(),
34+
/* playbackParameters= */ exoPlayer.getPlaybackParameters());
3435
}
3536

3637
private ExoPlayerState(

0 commit comments

Comments
 (0)