mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
DepictedImagesFragment.kt: Changed arguments!! to requireArguments()
This commit is contained in:
parent
bf9724fdca
commit
5faed112d4
1 changed files with 1 additions and 1 deletions
|
|
@ -17,6 +17,6 @@ class DepictedImagesFragment : PageableMediaFragment() {
|
||||||
savedInstanceState: Bundle?,
|
savedInstanceState: Bundle?,
|
||||||
) {
|
) {
|
||||||
super.onViewCreated(view, savedInstanceState)
|
super.onViewCreated(view, savedInstanceState)
|
||||||
onQueryUpdated(arguments!!.getString("entityId")!!)
|
onQueryUpdated(requireArguments().getString("entityId")!!)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue