From 2935ff8f97dd6b42c88206c554f9c9c9f216e66b Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 22 Aug 2023 14:49:54 +0200 Subject: [PATCH] Fix Javadoc for AnnotationMetadata.getMetaAnnotationTypes() --- .../org/springframework/core/type/AnnotationMetadata.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/type/AnnotationMetadata.java b/spring-core/src/main/java/org/springframework/core/type/AnnotationMetadata.java index 944e232af9..7658126b51 100644 --- a/spring-core/src/main/java/org/springframework/core/type/AnnotationMetadata.java +++ b/spring-core/src/main/java/org/springframework/core/type/AnnotationMetadata.java @@ -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 present 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 getMetaAnnotationTypes(String annotationName) {