Back to Intellij Community

SuppressionAnnotation

jvm/jvm-analysis-impl/resources/inspectionDescriptions/SuppressionAnnotation.html

2025.3-rc-2277 B
Original Source

Reports comments or annotations suppressing inspections.

This inspection can be useful when leaving suppressions intentionally for further review.

Example:

@SuppressWarnings("unused")
static Stream<String> stringProvider() {
    return Stream.of("foo", "bar");
}