InsightPumpFragment: add redundant casting for travis
This commit is contained in:
parent
ee0a53976f
commit
0966bea1e8
1 changed files with 2 additions and 2 deletions
|
@ -52,8 +52,8 @@ public class InsightPumpFragment extends SubscriberFragment {
|
|||
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||||
Bundle savedInstanceState) {
|
||||
try {
|
||||
View view = inflater.inflate(R.layout.insightpump_fragment, container, false);
|
||||
holder = view.findViewById(R.id.insightholder);
|
||||
final View view = inflater.inflate(R.layout.insightpump_fragment, container, false);
|
||||
holder = (LinearLayout) view.findViewById(R.id.insightholder);
|
||||
viewAdapter = new StatusItemViewAdapter(getActivity(), holder);
|
||||
|
||||
return view;
|
||||
|
|
Loading…
Reference in a new issue