Skip to content

Commit

Permalink
Fix Checkstyle violations in MediaSourceManager
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-- committed Apr 11, 2020
1 parent 53b3bda commit d1d942f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,8 @@ private synchronized void maybeSynchronizePlayer() {
//////////////////////////////////////////////////////////////////////////*/

private Observable<Long> getEdgeIntervalSignal() {
return Observable.interval(progressUpdateIntervalMillis, TimeUnit.MILLISECONDS, AndroidSchedulers.mainThread())
return Observable.interval(progressUpdateIntervalMillis,
TimeUnit.MILLISECONDS, AndroidSchedulers.mainThread())
.filter(ignored ->
playbackListener.isApproachingPlaybackEdge(playbackNearEndGapMillis));
}
Expand Down

0 comments on commit d1d942f

Please sign in to comment.