On 1/3/2013 3:33 AM, Daniel Fuchs wrote:
On 12/27/12 12:06 AM, Joe Wang wrote:
Hi,
This is a patch to clean up compiling warnings in jaxp.
Bug: http://bugs.sun.com/view_bug.do?bug_id=8005473
Webrev: http://cr.openjdk.java.net/~joehw/jdk8/8005473/webrev/
Thanks,
Joe
Hi Joe,
In FactoryFind
On 12/27/12 12:06 AM, Joe Wang wrote:
Hi,
This is a patch to clean up compiling warnings in jaxp.
Bug: http://bugs.sun.com/view_bug.do?bug_id=8005473
Webrev: http://cr.openjdk.java.net/~joehw/jdk8/8005473/webrev/
Thanks,
Joe
Hi Joe,
In FactoryFinder.java - line 213,
SchemaFactoryFinder.java
On 27 Dec 2012, at 22:26, Remi Forax wrote:
> On 12/27/2012 10:41 PM, Chris Hegarty wrote:
>>
Method method = clazz.getMethod(DOM_LEVEL3_METHOD);
is equivalent to
Method method = clazz.getMethod(DOM_LEVEL3_METHOD, new Class[0]);
so you allocate an empty array each time you c
On 12/27/2012 10:41 PM, Chris Hegarty wrote:
Method method = clazz.getMethod(DOM_LEVEL3_METHOD);
is equivalent to
Method method = clazz.getMethod(DOM_LEVEL3_METHOD, new Class[0]);
so you allocate an empty array each time you call getMethod.
A better patch is to cast null to Class[] (or Object[
Method method = clazz.getMethod(DOM_LEVEL3_METHOD);
is equivalent to
Method method = clazz.getMethod(DOM_LEVEL3_METHOD, new Class[0]);
so you allocate an empty array each time you call getMethod.
A better patch is to cast null to Class[] (or Object[] for invoke)
Method method = clazz.getMethod(
Thanks all!
I've updated the webrev with Remi's suggestion.
-Joe
On 12/27/2012 5:25 AM, Remi Forax wrote:
On 12/27/2012 12:06 AM, Joe Wang wrote:
Hi,
This is a patch to clean up compiling warnings in jaxp.
Bug: http://bugs.sun.com/view_bug.do?bug_id=8005473
Webrev: http://cr.openjdk.java.ne
On 12/27/2012 12:06 AM, Joe Wang wrote:
Hi,
This is a patch to clean up compiling warnings in jaxp.
Bug: http://bugs.sun.com/view_bug.do?bug_id=8005473
Webrev: http://cr.openjdk.java.net/~joehw/jdk8/8005473/webrev/
Thanks,
Joe
Hi Joe,
Method method = clazz.getMethod(DOM_LEVEL3_METHOD);
is
On 27 Dec 2012, at 00:31, Weijun Wang wrote:
> The code changes look fine.
+1. Nice to see warnings being cleaned up.
-Chris
>
> Thanks
> Max
>
> On 12/27/2012 07:06 AM, Joe Wang wrote:
>> Hi,
>>
>> This is a patch to clean up compiling warnings in jaxp.
>>
>> Bug: http://bugs.sun.com/vie
The code changes look fine.
Thanks
Max
On 12/27/2012 07:06 AM, Joe Wang wrote:
Hi,
This is a patch to clean up compiling warnings in jaxp.
Bug: http://bugs.sun.com/view_bug.do?bug_id=8005473
Webrev: http://cr.openjdk.java.net/~joehw/jdk8/8005473/webrev/
Thanks,
Joe
Hi,
This is a patch to clean up compiling warnings in jaxp.
Bug: http://bugs.sun.com/view_bug.do?bug_id=8005473
Webrev: http://cr.openjdk.java.net/~joehw/jdk8/8005473/webrev/
Thanks,
Joe
10 matches
Mail list logo