remove useless override
This commit is contained in:
parent
0d6a5b6c86
commit
0ac44ac561
|
@ -2,7 +2,6 @@ package com.h.pixeldroid.fragments.feeds
|
|||
|
||||
import android.content.Context
|
||||
import android.content.SharedPreferences
|
||||
import android.graphics.pdf.PdfDocument
|
||||
import android.os.Bundle
|
||||
import android.util.Log
|
||||
import android.view.LayoutInflater
|
||||
|
|
|
@ -78,11 +78,6 @@ class HomeFragment : FeedFragment<Status, HomeFragment.HomeRecyclerViewAdapter.V
|
|||
return LivePagedListBuilder(factory, config).build()
|
||||
}
|
||||
|
||||
|
||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||
super.onViewCreated(view, savedInstanceState)
|
||||
}
|
||||
|
||||
/**
|
||||
* [RecyclerView.Adapter] that can display a list of Statuses
|
||||
*/
|
||||
|
|
|
@ -88,10 +88,6 @@ class NotificationsFragment : FeedFragment<Notification, NotificationsFragment.N
|
|||
return LivePagedListBuilder(factory, config).build()
|
||||
}
|
||||
|
||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||
super.onViewCreated(view, savedInstanceState)
|
||||
}
|
||||
|
||||
/**
|
||||
* [RecyclerView.Adapter] that can display a [Notification]
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue