why does idea complain about a blocking call in th...
# coroutines
c
why does idea complain about a blocking call in this snippet?
Copy code
return@coroutineScope withContext(<http://Dispatchers.IO|Dispatchers.IO>) {
                    Files.readAllBytes(path)
                }
m
It’s a known bug in the Inspections. False-positive.
e
c
thanks!