Fix Javadoc for AnnotationMetadata.getMetaAnnotationTypes()

This commit is contained in:
Sam Brannen
2023-08-22 14:49:54 +02:00
parent aedd909ef6
commit 2935ff8f97

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2021 the original author or authors.
* Copyright 2002-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,8 +55,8 @@ public interface AnnotationMetadata extends ClassMetadata, AnnotatedTypeMetadata
/**
* Get the fully qualified class names of all meta-annotation types that
* are <em>present</em> on the given annotation type on the underlying class.
* @param annotationName the fully qualified class name of the meta-annotation
* type to look for
* @param annotationName the fully qualified class name of the annotation
* type to look for meta-annotations on
* @return the meta-annotation type names, or an empty set if none found
*/
default Set<String> getMetaAnnotationTypes(String annotationName) {