You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Hudson (JIRA)" <ji...@apache.org> on 2010/06/01 21:14:39 UTC

[jira] Commented: (HARMONY-6533) [classlib] [luni] Proxy.getProxyClass's interfaces paramter should be declared as varargs

    [ https://issues.apache.org/jira/browse/HARMONY-6533?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12874166#action_12874166 ] 

Hudson commented on HARMONY-6533:
---------------------------------

Integrated in Harmony-1.5-head-linux-x86_64 #818 (See [http://hudson.zones.apache.org/hudson/job/Harmony-1.5-head-linux-x86_64/818/])
    Apply fix for "[#HARMONY-6533] [classlib] [luni] Proxy.getProxyClass's
interfaces paramter should be declared as varargs".  This changed from
java 1.4 to java 1.5.  I wonder if there are more of these that we have
missed.


> [classlib] [luni] Proxy.getProxyClass's interfaces paramter should be declared as varargs
> -----------------------------------------------------------------------------------------
>
>                 Key: HARMONY-6533
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6533
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>    Affects Versions: 6.0M1
>            Reporter: Andreas Sewe
>            Assignee: Mark Hindess
>            Priority: Minor
>             Fix For: 6.0M3, 5.0M15
>
>
> Currently, java.lang.reflect.Proxy.getProxyClass accepts an array of Class<?> as its second argument: interfaces. According to the Java SE 6 API, however, interfaces should be a varargs parameter. This might not matter in a lot of cases, but it confuses the Scala compiler (scalac) big-time, making it impossible to compile the Scala library against the Apache Harmony classlib (note the array of arrays scalac mistakenly requires):
>  found   : Array[java.lang.Class[_]]
>  required: Array[_ <: Array[java.lang.Class[_]]]
>       java.lang.reflect.Proxy.getProxyClass(cl, ifaces: _*)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.