This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-weaver.git
The following commit(s) were added to refs/heads/master by this push: new 682d779 Javadoc @since tag should be after @return and @throws 682d779 is described below commit 682d779999551d620c199dc556d08e1a87519080 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Mon Mar 24 09:09:38 2025 -0400 Javadoc @since tag should be after @return and @throws --- processor/src/main/java/org/apache/commons/weaver/Finder.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/processor/src/main/java/org/apache/commons/weaver/Finder.java b/processor/src/main/java/org/apache/commons/weaver/Finder.java index 17a2a8a..8e40522 100644 --- a/processor/src/main/java/org/apache/commons/weaver/Finder.java +++ b/processor/src/main/java/org/apache/commons/weaver/Finder.java @@ -377,8 +377,9 @@ class Finder extends AnnotationFinder implements Scanner { /** * Gets the list of objects representing all scanned classes. - * @since 1.3 + * * @return {@link List} of {@link Annotated}{@code <Class<?>>} + * @since 1.3 */ public List<Annotated<Class<?>>> getAllClasses() { return annotate(originalInfos.values());