I'm implementing a `ContentConverter` and Intellij...
# ktor
p
I'm implementing a
ContentConverter
and Intellij is warning me about an "Inappropriate blocking method call" because a method throws
IOException
.
withContext(<http://Dispatchers.IO|Dispatchers.IO>) { ... }
resolves the warning. But I'm curios if this is actually necessary because the converters that come with ktor don't change the context when the text is de-serialized.