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
@@ -84,7 +84,7 @@ public class TimersFragment extends RecyclerViewFragment<
}
@Override
protected TimersCursorAdapter onCreateAdapter(Bundle savedInstanceState) {
protected TimersCursorAdapter onCreateAdapter() {
// Create a new adapter. This is called before we can initialize mAsyncTimersTableUpdateHandler,
// 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"