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
@@ -136,7 +136,7 @@ public class AlarmsFragment extends RecyclerViewFragment<
}
@Override
protected AlarmsCursorAdapter onCreateAdapter(Bundle savedInstanceState) {
protected AlarmsCursorAdapter onCreateAdapter() {
// Create a new adapter. This is called before we can initialize mAlarmController,
// so right now it is null. However, after super.onCreate() returns, it is initialized, and
// the reference variable will be pointing to an actual object. This assignment "propagates"