chore: Remove comment

This commit is contained in:
Jaime García 2025-11-06 04:48:24 +01:00 committed by GitHub
parent a0dfe63660
commit 938c1de906
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,7 +36,6 @@ class EqualizerFragment : Fragment() {
@OptIn(UnstableApi::class) @OptIn(UnstableApi::class)
override fun onReceive(context: Context?, intent: Intent?) { override fun onReceive(context: Context?, intent: Intent?) {
if (intent?.action == MediaService.ACTION_EQUALIZER_UPDATED) { if (intent?.action == MediaService.ACTION_EQUALIZER_UPDATED) {
// Equalizer became available or updated. Rebuild UI and restore values.
initUI() initUI()
restoreEqualizerPreferences() restoreEqualizerPreferences()
} }
@ -266,4 +265,4 @@ class EqualizerFragment : Fragment() {
} }
private fun Int.dpToPx(context: Context): Int = private fun Int.dpToPx(context: Context): Int =
(this * context.resources.displayMetrics.density).toInt() (this * context.resources.displayMetrics.density).toInt()