Skip to content

Commit

Permalink
Generate fake changes in each module
Browse files Browse the repository at this point in the history
  • Loading branch information
MGaetan89 committed Feb 18, 2024
1 parent 748be60 commit 8185886
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ object SRGAnalytics {
*/
val comScore: ComScore?
get() {
println("Coucou")
return instance?.comScore
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ object DefaultPillarbox {
dataSourceFactory: DataSource.Factory = AkamaiTokenDataSource.Factory(),
loadControl: LoadControl = PillarboxLoadControl(),
): PillarboxPlayer {
println("Coucou")
return PillarboxPlayer(
context = context,
seekIncrement = seekIncrement,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class PillarboxLoadControl(
.build()

override fun onPrepared() {
println("Coucou")
defaultLoadControl.onPrepared()
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class SimpleProgressTrackerState(

@OptIn(ExperimentalCoroutinesApi::class)
override val progress: StateFlow<Duration> = isProgressing.flatMapLatest { isProgressing ->
println("Coucou")
if (isProgressing) {
currentProgress
} else {
Expand Down

0 comments on commit 8185886

Please sign in to comment.