Change signature of RecyclerViewFragment#onCreateAdapter() to not require Bundle param

This commit is contained in:
Phillip Hsu
2016-09-03 15:33:03 -07:00
parent ca2da0ad66
commit 8171a663bc
4 changed files with 6 additions and 10 deletions
@@ -260,7 +260,7 @@ public class StopwatchFragment extends RecyclerViewFragment<
}
@Override
protected LapsAdapter onCreateAdapter(Bundle savedInstanceState) {
protected LapsAdapter onCreateAdapter() {
return new LapsAdapter();
}