This inspection reports unnecessary parentheses in annotation entries. For example:

annotation class MyAnnotation

@MyAnnotation() // There parentheses can be omitted
fun test() {

}