csense-oss / idea-kotlin-checked-exceptions

A plugin that adds errors / hints / quickfix related to checked exceptions for kotlin.
MIT License
24 stars 2 forks source link

deprecation (error) should not warn on missing throws. #20

Closed Tvede-dk closed 7 months ago

Tvede-dk commented 10 months ago

constructs such as

@Deprecated(
    level = DeprecationLevel.ERROR, message = "Something"
)
fun xyz() = TODO()

should not be marked as missing a throws. It will not even compile :)

Tvede-dk commented 7 months ago

was fixed