You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2019/12/26 20:32:33 UTC

[groovy] branch GROOVY_3_0_X updated: Remove stray comma in StaticTypeCheckingSupport#buildParameter javadoc.

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

pascalschumacher pushed a commit to branch GROOVY_3_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
     new 1677fb3  Remove stray comma in StaticTypeCheckingSupport#buildParameter javadoc.
1677fb3 is described below

commit 1677fb376019992057e32d6fdbe43874f7f62865
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Thu Dec 26 21:30:15 2019 +0100

    Remove stray comma in StaticTypeCheckingSupport#buildParameter javadoc.
---
 .../org/codehaus/groovy/transform/stc/StaticTypeCheckingSupport.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/codehaus/groovy/transform/stc/StaticTypeCheckingSupport.java b/src/main/java/org/codehaus/groovy/transform/stc/StaticTypeCheckingSupport.java
index 5f2e6a6..fb925a7 100644
--- a/src/main/java/org/codehaus/groovy/transform/stc/StaticTypeCheckingSupport.java
+++ b/src/main/java/org/codehaus/groovy/transform/stc/StaticTypeCheckingSupport.java
@@ -1285,7 +1285,7 @@ public abstract class StaticTypeCheckingSupport {
      * Given a parameter, builds a new parameter for which the known generics placeholders are resolved.
      *
      * @param genericFromReceiver      resolved generics from the receiver of the message
-     * @param placeholdersFromContext, resolved generics from the method context
+     * @param placeholdersFromContext  resolved generics from the method context
      * @param methodParameter          the method parameter for which we want to resolve generic types
      * @param paramType                the (unresolved) type of the method parameter
      * @return a new parameter with the same name and type as the original one, but with resolved generic types