Remove redundant casts

This commit is contained in:
veyndan 2017-03-04 00:42:18 +00:00
parent 74f9775771
commit 0993858272
6 changed files with 7 additions and 7 deletions

View file

@ -199,7 +199,7 @@ public class NearbyListFragment extends ListFragment implements TaskListener {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// Get the data item for this position
Place place = (Place) getItem(position);
Place place = getItem(position);
Log.d(TAG, "Place " + place.name);
// Check if an existing view is being reused, otherwise inflate the view