extending AirPodsPro instead of regular

This commit is contained in:
LoudSoftware
2025-09-24 18:54:21 -04:00
parent 7c21e2d464
commit e0110d9264
@@ -3,7 +3,7 @@ package com.dosse.airpods.pods.models;
import com.dosse.airpods.R;
import com.dosse.airpods.pods.Pod;
public class AirPodsPro3 extends RegularPods {
public class AirPodsPro3 extends AirPodsPro {
public AirPodsPro3(Pod leftPod, Pod rightPod, Pod casePod) {
super(leftPod, rightPod, casePod);
}
@@ -18,11 +18,6 @@ public class AirPodsPro3 extends RegularPods {
return getPod(RIGHT).isConnected() ? R.drawable.podpro3 : R.drawable.podpro_disconnected;
}
@Override
public int getCaseDrawable() {
return getPod(CASE).isConnected() ? R.drawable.podpro_case : R.drawable.podpro_case_disconnected;
}
@Override
public String getModel() {
return Constants.MODEL_AIRPODS_PRO_3;