Polishing.

Original Pull Request: #2333
This commit is contained in:
Christoph Strobl
2021-03-30 11:18:15 +02:00
parent 79ed0a75c7
commit 85c0ce1450

View File

@@ -223,15 +223,11 @@ class PreferredConstructorDiscovererUnitTests<P extends PersistentProperty<P>> {
static class ClassWithMetaAnnotatedParameter {
ClassWithMetaAnnotatedParameter(@MyValue String value) {
}
ClassWithMetaAnnotatedParameter(@MyValue String value) { }
}
@Target({ ElementType.PARAMETER, })
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Value("${hello-world}")
@interface MyValue {
}
@interface MyValue { }
}