Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/defaultAnnotationParamValue/after3.java
2016-11-21 17:09:17 +01:00

11 lines
122 B
Java

// "Remove redundant parameter" "true"
@interface Anno {
String foo() default "hello world";
}
@Anno()
class Foo {
}