refactor: Remove commented code

This commit is contained in:
Jaime García 2025-09-22 19:47:07 +02:00
parent 040558198e
commit f74813ef69
No known key found for this signature in database
GPG key ID: BC4E5F71A71BDA5B

View file

@ -11,9 +11,6 @@ public class PlaybackViewModel extends ViewModel {
private final MutableLiveData<String> currentMediaId = new MutableLiveData<>(null); private final MutableLiveData<String> currentMediaId = new MutableLiveData<>(null);
private final MutableLiveData<Boolean> isPlaying = new MutableLiveData<>(false); private final MutableLiveData<Boolean> isPlaying = new MutableLiveData<>(false);
// (Optional) expose position or other info
// private final MutableLiveData<Long> positionMs = new MutableLiveData<>(0L);
public LiveData<String> getCurrentMediaId() { public LiveData<String> getCurrentMediaId() {
return currentMediaId; return currentMediaId;
} }