Default annotation parameter value
Reports annotation parameters that are assigned to their default
value.
Example:
@interface Test {
Class<?> expected() default Throwable.class;
}
@Test(expected = Throwable.class)
void testSmth() {}
After the quick-fix is applied:
@Test()
void testSmth() {}
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Java, 233.SNAPSHOT |
Last modified: 13 July 2023