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");
}