You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/06/07 03:08:38 UTC

commons-crypto git commit: Fix compiler warning.

Repository: commons-crypto
Updated Branches:
  refs/heads/master 464fa96fe -> fbc4176e3


Fix compiler warning.

Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/fbc4176e
Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/fbc4176e
Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/fbc4176e

Branch: refs/heads/master
Commit: fbc4176e3b6b260aa60724679aea255f196e7e89
Parents: 464fa96
Author: ggregory <gg...@apache.org>
Authored: Mon Jun 6 20:08:36 2016 -0700
Committer: ggregory <gg...@apache.org>
Committed: Mon Jun 6 20:08:36 2016 -0700

----------------------------------------------------------------------
 src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/fbc4176e/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java b/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java
index aab3196..3e5cdb1 100644
--- a/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java
+++ b/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java
@@ -76,7 +76,7 @@ public class ReflectionUtils {
             if (args.length == 0) {
                 ctor = klass.getDeclaredConstructor(new Class[] {});
             } else {
-                Class[] argClses = new Class[args.length];
+                Class<?>[] argClses = new Class[args.length];
                 for (int i = 0; i < args.length; i++) {
                     argClses[i] = args[i].getClass();
                 }