-
Enhancement
-
Resolution: Won't Fix
-
P5
-
None
-
6
-
generic
-
solaris_8
Date: Fri, 09 Jul 2004 18:44:37 -0400
From: <###@###.###>
Subject: Re: Minor glitch in javac
Sender: ###@###.###
To: Neal Gafter <###@###.###>
Cc: <###@###.###>, <###@###.###>
Sorry, of course you are correct.
But Boolean.valueOf did exist in 1.4. You could fix it to use valueOf
for autoboxing
booleans.
The issue comes up because FindBugs complains about using the Boolean
constructor, and
there were places in FindBugs where we used autoboxing of a boolean. As
a result,
when we switched from the JSR14 adapter to using -target jsr14, we
started getting
warnings in our own code, which we try to avoid.
At any rate, not a big deal.
Bill
On Jul 9, 2004, at 6:16 PM, Neal Gafter wrote:
> Integer.valueOf(int) didn't exist in 1.4.
>
> -Neal
>
>
> Bill Pugh wrote:
>> Neal,
>> If you use -target jsr14, then when autoboxing is used, the
>> constructor
>> is used to create the autoboxed instance, instead of using valueOf.
>> Since -target jsr14 is only intended to run on 1.4 JVM's (it
>> generates
>> classfile version 48.0), it should be safe to call valueOf.
>> Bill
>
From: <###@###.###>
Subject: Re: Minor glitch in javac
Sender: ###@###.###
To: Neal Gafter <###@###.###>
Cc: <###@###.###>, <###@###.###>
Sorry, of course you are correct.
But Boolean.valueOf did exist in 1.4. You could fix it to use valueOf
for autoboxing
booleans.
The issue comes up because FindBugs complains about using the Boolean
constructor, and
there were places in FindBugs where we used autoboxing of a boolean. As
a result,
when we switched from the JSR14 adapter to using -target jsr14, we
started getting
warnings in our own code, which we try to avoid.
At any rate, not a big deal.
Bill
On Jul 9, 2004, at 6:16 PM, Neal Gafter wrote:
> Integer.valueOf(int) didn't exist in 1.4.
>
> -Neal
>
>
> Bill Pugh wrote:
>> Neal,
>> If you use -target jsr14, then when autoboxing is used, the
>> constructor
>> is used to create the autoboxed instance, instead of using valueOf.
>> Since -target jsr14 is only intended to run on 1.4 JVM's (it
>> generates
>> classfile version 48.0), it should be safe to call valueOf.
>> Bill
>