Statement lambda can be replaced with expression lambda less… (Ctrl+F1)
This inspection reports lambda expressions with code block bodies when expression-style bodies can be us
where the warning occurs:
recyclerViewAdapter.setOnItemClicListener((v ,id) -> {
checkChoosed(id);
});
modify it to this:
recyclerViewAdapter.setOnItemClicListener((v ,id) -> checkChoosed(id) );
then it will be Ok