Skip to content

Commit

Permalink
Change access levels of compound Views to public to satisfy Lint's In…
Browse files Browse the repository at this point in the history
…stantiatable requirement when building for release.
  • Loading branch information
philliphsu committed Jun 13, 2017
1 parent 752f1ad commit 3b813ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* Parent of {@link PagingDayPickerView} and {@link MonthPickerView}.
*/
final class DayPickerViewAnimator extends ViewAnimator {
public final class DayPickerViewAnimator extends ViewAnimator {

private final Animation mDayPickerInAnimation;
private final Animation mDayPickerOutAnimation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/**
* This displays a list of months in a calendar format with selectable days.
*/
class DayPickerViewPager extends ViewPager {
public class DayPickerViewPager extends ViewPager {
private static final String TAG = DayPickerViewPager.class.getSimpleName();

private final ArrayList<View> mMatchParentChildren = new ArrayList<>(1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Grid view of selectable months.
*/
final class MonthPickerView extends View {
public final class MonthPickerView extends View {
private static final String TAG = "MonthPickerView";

private static final int NUM_COLUMNS = 3;
Expand Down

0 comments on commit 3b813ab

Please sign in to comment.