[ https://issues.apache.org/jira/browse/HARMONY-6533?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Mark Hindess reassigned HARMONY-6533:
-------------------------------------
Assignee: Mark Hindess
> [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
>
> 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.
|