refactor: Remove commented code

This commit is contained in:
Jaime García
2025-09-22 19:47:07 +02:00
parent 040558198e
commit f74813ef69

View File

@@ -11,9 +11,6 @@ public class PlaybackViewModel extends ViewModel {
private final MutableLiveData<String> currentMediaId = new MutableLiveData<>(null);
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() {
return currentMediaId;
}