SelectFolderFragment: use runCatching to replace exception handling

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-09-05 20:20:54 +05:30
parent 2041ec3f19
commit 117b5e1d3b
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -11,6 +11,8 @@ import androidx.appcompat.app.AppCompatActivity
import androidx.fragment.app.Fragment
import androidx.fragment.app.activityViewModels
import androidx.recyclerview.widget.LinearLayoutManager
import com.github.michaelbull.result.onFailure
import com.github.michaelbull.result.runCatching
import com.zeapo.pwdstore.databinding.PasswordRecyclerViewBinding
import com.zeapo.pwdstore.ui.adapters.PasswordItemRecyclerAdapter
import com.zeapo.pwdstore.utils.PasswordItem
@ -51,7 +53,7 @@ class SelectFolderFragment : Fragment(R.layout.password_recycler_view) {
override fun onAttach(context: Context) {
super.onAttach(context)
try {
runCatching {
listener = object : OnFragmentInteractionListener {
override fun onFragmentInteraction(item: PasswordItem) {
if (item.type == PasswordItem.TYPE_CATEGORY) {
@ -60,9 +62,8 @@ class SelectFolderFragment : Fragment(R.layout.password_recycler_view) {
}
}
}
} catch (e: ClassCastException) {
throw ClassCastException(
"$context must implement OnFragmentInteractionListener")
}.onFailure {
throw ClassCastException("$context must implement OnFragmentInteractionListener")
}
}