-
-
Notifications
You must be signed in to change notification settings - Fork 503
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate various item rows to SDK #3643
Migrate various item rows to SDK #3643
Conversation
@@ -133,7 +133,7 @@ | |||
this.queryType = QueryType.LiveTvRecording; | |||
} | |||
|
|||
public BrowseRowDef(String header, SimilarItemsQuery query, QueryType type) { | |||
public BrowseRowDef(String header, GetSimilarItemsRequest query, QueryType type) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
@@ -133,7 +133,7 @@ | |||
this.queryType = QueryType.LiveTvRecording; | |||
} | |||
|
|||
public BrowseRowDef(String header, SimilarItemsQuery query, QueryType type) { | |||
public BrowseRowDef(String header, GetSimilarItemsRequest query, QueryType type) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
@@ -133,7 +133,7 @@ | |||
this.queryType = QueryType.LiveTvRecording; | |||
} | |||
|
|||
public BrowseRowDef(String header, SimilarItemsQuery query, QueryType type) { | |||
public BrowseRowDef(String header, GetSimilarItemsRequest query, QueryType type) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
@@ -181,7 +181,7 @@ | |||
|
|||
public GetLatestMediaRequest getLatestItemsQuery() { return latestItemsQuery; } | |||
|
|||
public SimilarItemsQuery getSimilarQuery() { return similarQuery; } | |||
public GetSimilarItemsRequest getSimilarQuery() { return similarQuery; } |
Check notice
Code scanning / Android Lint
Unknown nullness Note
@@ -321,30 +320,27 @@ | |||
staticHeight = true; | |||
} | |||
|
|||
public ItemRowAdapter(Context context, SimilarItemsQuery query, QueryType queryType, Presenter presenter, MutableObjectAdapter<Row> parent) { | |||
public ItemRowAdapter(Context context, GetSimilarItemsRequest query, QueryType queryType, Presenter presenter, MutableObjectAdapter<Row> parent) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
this.queryType = queryType; | ||
} | ||
|
||
public ItemRowAdapter(Context context, UpcomingEpisodesQuery query, Presenter presenter, MutableObjectAdapter<Row> parent) { | ||
public ItemRowAdapter(Context context, GetUpcomingEpisodesRequest query, Presenter presenter, MutableObjectAdapter<Row> parent) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
queryType = QueryType.Upcoming; | ||
} | ||
|
||
public ItemRowAdapter(Context context, SeasonQuery query, Presenter presenter, MutableObjectAdapter<Row> parent) { | ||
public ItemRowAdapter(Context context, GetSeasonsRequest query, Presenter presenter, MutableObjectAdapter<Row> parent) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
queryType = QueryType.Upcoming; | ||
} | ||
|
||
public ItemRowAdapter(Context context, SeasonQuery query, Presenter presenter, MutableObjectAdapter<Row> parent) { | ||
public ItemRowAdapter(Context context, GetSeasonsRequest query, Presenter presenter, MutableObjectAdapter<Row> parent) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
queryType = QueryType.Upcoming; | ||
} | ||
|
||
public ItemRowAdapter(Context context, SeasonQuery query, Presenter presenter, MutableObjectAdapter<Row> parent) { | ||
public ItemRowAdapter(Context context, GetSeasonsRequest query, Presenter presenter, MutableObjectAdapter<Row> parent) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
queryType = QueryType.Upcoming; | ||
} | ||
|
||
public ItemRowAdapter(Context context, SeasonQuery query, Presenter presenter, MutableObjectAdapter<Row> parent) { | ||
public ItemRowAdapter(Context context, GetSeasonsRequest query, Presenter presenter, MutableObjectAdapter<Row> parent) { |
Check notice
Code scanning / Android Lint
Unknown nullness Note
Changes
Issues