Make mHourPicker/mMinutePicker/mSecondPicker private and final

- Related to commit e995e9a;
This commit is contained in:
BlackyHawky 2025-06-15 19:33:34 +02:00
parent d185af8c85
commit e40e72282b

View file

@ -18,9 +18,10 @@ import java.util.concurrent.TimeUnit;
* Custom component to display a time selection view using spinners used when creating timers.
*/
public class CustomTimerSpinnerSetupView extends LinearLayout {
NumberPicker mHourPicker;
NumberPicker mMinutePicker;
NumberPicker mSecondPicker;
private final NumberPicker mHourPicker;
private final NumberPicker mMinutePicker;
private final NumberPicker mSecondPicker;
@Nullable
OnValueChangeListener mOnValueChangeListener;