Recently, I face this warning in my IntelliJ Idea. But I don't have any solution for that...
Also, I don't want to use the @Suppress("NAME_SHADOWING").
I'll be grateful if you guide me.
This is my code:
fun add(
@Parameter id: Long?
): someClass {
myTable?.content?.firstOrNull { it.add }?.id?.let { id ->
db.products.readById(id)?.let { db.products.delete(it) }
}
return remove(id)
}