Skip to content

Commit

Permalink
Small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
martijn00 committed Aug 16, 2015
1 parent 4b701e8 commit dbc50fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions XamarinItemTouchHelper.Sample/RecyclerListAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ public class ItemViewHolder : RecyclerView.ViewHolder, IItemTouchHelperViewHolde
public ItemViewHolder (View itemView) : base (itemView)
{
_itemView = itemView;
textView = (TextView) itemView.FindViewById(Resource.Id.text);
handleView = (ImageView) itemView.FindViewById(Resource.Id.handle);
textView = itemView.FindViewById<TextView>(Resource.Id.text);
handleView = itemView.FindViewById<ImageView>(Resource.Id.handle);
}

public void OnItemSelected ()
Expand Down

0 comments on commit dbc50fe

Please sign in to comment.