This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git
The following commit(s) were added to refs/heads/master by this push: new e2228d8 fix return type of getFilesToProcess in Javadoc (#223) e2228d8 is described below commit e2228d811df2a46a45c9d9c8ead774472b306f29 Author: Elliotte Rusty Harold <elh...@users.noreply.github.com> AuthorDate: Sat Jun 7 12:51:23 2025 +0000 fix return type of getFilesToProcess in Javadoc (#223) --- src/main/java/org/apache/maven/plugins/pmd/AbstractPmdReport.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/maven/plugins/pmd/AbstractPmdReport.java b/src/main/java/org/apache/maven/plugins/pmd/AbstractPmdReport.java index dcdb10e..533e5c5 100644 --- a/src/main/java/org/apache/maven/plugins/pmd/AbstractPmdReport.java +++ b/src/main/java/org/apache/maven/plugins/pmd/AbstractPmdReport.java @@ -273,9 +273,9 @@ public abstract class AbstractPmdReport extends AbstractMavenReport { } /** - * Convenience method to retrieve the files on which the PMD tool will be executed. + * Convenience method to get files the PMD tool will analyze. * - * @return a map of the files where the PMD tool will be executed + * @return the files the PMD tool will analyze * @throws IOException if an I/O error occurs during construction of the * canonical paths of the files */