mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-30 06:13:54 +01:00
Remove redundant casts
This commit is contained in:
parent
74f9775771
commit
0993858272
6 changed files with 7 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue