Skip to content

Commit

Permalink
Remove "coucou" log in LeanbackPlayerFragment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Loic-Dumas committed Jan 18, 2024
1 parent 48d28eb commit 7010a71
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,18 @@ class LeanbackPlayerFragment : VideoSupportFragment() {
}

override fun onPause() {
Log.d("Coucou", "PlayerFragment:onPause")
Log.d(TAG, "PlayerFragment:onPause")
super.onPause()
player.pause()
}

override fun onDestroy() {
super.onDestroy()
Log.d("Coucou", "PlayerFragment:onDestroy")
Log.d(TAG, "PlayerFragment:onDestroy")
player.release()
}

companion object {
const val TAG = "LeanbackPlayerFragment"

Check warning

Code scanning / detekt

Public properties require documentation. Warning

The property TAG is missing documentation.
}
}

0 comments on commit 7010a71

Please sign in to comment.