Skip to content
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

housekeeping: Added Virtual Keyword to method to allow overriding #2064

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -65,7 +65,7 @@ public override int GetItemViewType(int position)
/// <param name="position">The position of the current view in the list.</param>
/// <param name="viewModel">The ViewModel associated with the current View.</param>
/// <returns>An ID to be used in OnCreateViewHolder.</returns>
public int GetItemViewType(int position, TViewModel viewModel)
public virtual int GetItemViewType(int position, TViewModel viewModel)
{
return base.GetItemViewType(position);
}
Expand Down