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 2023/01/10 06:23:40 UTC

[groovy] branch master updated: copy transpose DGM primitive array methods to ArrayGroovyMethods (oops, missed one file)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new b4c76b26d1 copy transpose DGM primitive array methods to ArrayGroovyMethods (oops, missed one file)
b4c76b26d1 is described below

commit b4c76b26d166a601f6956a314b266a66db440c96
Author: Paul King <pa...@asert.com.au>
AuthorDate: Tue Jan 10 16:23:30 2023 +1000

    copy transpose DGM primitive array methods to ArrayGroovyMethods (oops, missed one file)
---
 src/main/java/org/codehaus/groovy/reflection/GeneratedMetaMethod.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/codehaus/groovy/reflection/GeneratedMetaMethod.java b/src/main/java/org/codehaus/groovy/reflection/GeneratedMetaMethod.java
index f373e1c08f..2507139616 100644
--- a/src/main/java/org/codehaus/groovy/reflection/GeneratedMetaMethod.java
+++ b/src/main/java/org/codehaus/groovy/reflection/GeneratedMetaMethod.java
@@ -126,8 +126,8 @@ public abstract class GeneratedMetaMethod extends MetaMethod {
 
                 boolean[].class, char[].class, byte[].class, short[].class,
                 int[].class, long[].class, double[].class, float[].class,
-                int[][].class, long[][].class, double[][].class,
-
+                boolean[][].class, char[][].class, byte[][].class, short[][].class,
+                int[][].class, long[][].class, double[][].class, float[][].class,
                 Object[].class, String[].class, Class[].class, Byte[].class, CharSequence[].class,
         };