You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2020/12/27 00:01:30 UTC

[maven] branch master updated: [MNG-7057] Param style of Javadoc in ReactorModelPool is wrong

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new c79682b  [MNG-7057] Param style of Javadoc in ReactorModelPool is wrong
c79682b is described below

commit c79682bca9ec00c82cf23c480862a4047f1deeee
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Dec 27 01:00:25 2020 +0100

    [MNG-7057] Param style of Javadoc in ReactorModelPool is wrong
---
 .../src/main/java/org/apache/maven/project/ReactorModelPool.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java b/maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java
index b46eea8..de8af7e 100644
--- a/maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java
+++ b/maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java
@@ -46,9 +46,9 @@ class ReactorModelPool
     /**
      * Get the model by its GAV or (since 4.0.0) by its GA if there is only one.
      *
-     * @param groupId, never {@code null}
-     * @param artifactId, never {@code null}
-     * @param version, can be {@code null}
+     * @param groupId never {@code null}
+     * @param artifactId never {@code null}
+     * @param version can be {@code null}
      * @return the matching model or {@code null}
      * @throws IllegalStateException if version was null and multiple modules share the same groupId + artifactId
      */