Skip to content

Commit

Permalink
Changes Delegates visibility to protected
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmcosta committed Feb 28, 2017
1 parent 0d232a9 commit 9a27bf5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public class DatePickerDialogFragment extends DialogFragment {
public static final String TAG = DatePickerDialogFragment.class.getName();

private DatePickerDialogFragmentDelegate mDelegate;
protected DatePickerDialogFragmentDelegate mDelegate;

public DatePickerDialogFragment() {
mDelegate = onCreateDatePickerDialogFragmentDelegate();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public class DatePickerDialogFragmentCompat extends DialogFragment {
public static final String TAG = DatePickerDialogFragmentCompat.class.getName();

private DatePickerDialogFragmentDelegate mDelegate;
protected DatePickerDialogFragmentDelegate mDelegate;

public DatePickerDialogFragmentCompat() {
mDelegate = onCreateDatePickerDialogFragmentDelegate();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class TimePickerDialogFragment extends DialogFragment {
public static final String TAG = TimePickerDialogFragment.class.getName();

private TimePickerDialogFragmentDelegate mDelegate;
protected TimePickerDialogFragmentDelegate mDelegate;

public TimePickerDialogFragment() {
mDelegate = onCreateTimePickerDialogFragmentDelegate();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class TimePickerDialogFragmentCompat extends DialogFragment {
public static final String TAG = TimePickerDialogFragmentCompat.class.getName();

private TimePickerDialogFragmentDelegate mDelegate;
protected TimePickerDialogFragmentDelegate mDelegate;

public TimePickerDialogFragmentCompat() {
mDelegate = onCreateTimePickerDialogFragmentDelegate();
Expand Down

0 comments on commit 9a27bf5

Please sign in to comment.