Skip to content

Commit

Permalink
fix some code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
stonko1994 committed Aug 24, 2024
1 parent 7df10b6 commit efc76ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ public long getPlayHeadTimeMillis() {
double playerTimeShift = player.getTimeShift();
long playerDurationMs = -(Math.round(playerTimeShiftMax * 1000));
return playerDurationMs - -(Math.round(playerTimeShift * 1000));

} else {
double currentTime = player.getCurrentTime();
return (long) (currentTime * 1000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

public interface WithEventEmitter {
void call(JavaEventEmitter<Event> player);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ class DefaultSsaiApiTest {
}

ssaiApi = DefaultSsaiApi(
videoAnalytics,
adAnalytics,
videoAnalytics,
adAnalytics,
playerAdapter,
)
}
Expand Down

0 comments on commit efc76ad

Please sign in to comment.