mirror of
https://github.com/BlackyHawky/Clock.git
synced 2025-07-01 22:51:12 +00:00
Make mHourPicker/mMinutePicker/mSecondPicker private
and final
- Related to commit e995e9a
;
This commit is contained in:
parent
d185af8c85
commit
e40e72282b
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue