Unsure exactly who should review this ...
bug: https://bugs.openjdk.java.net/browse/JDK-8199768
webrev: http://cr.openjdk.java.net/~dholmes/8199768/webrev/
CompilerUtils.compile compiles all source files in a given directory
tree into a specific directory. This is done by passing
Integer.MAX_V
Hi Roger,
Seems there are no more comments... - all shocked :-)
-Patrick
Am 16.03.2018 um 16:21 schrieb Roger Riggs:
> Hi Patrick,
>
> Looks good,
>
> If there are no more comments, I can sponsor the commit.
>
> Thanks, Roger
>
>
> On 3/16/18 2:10 AM, Patrick Reinhart wrote:
>> Just coming bac
Hi,
currently (JDK 9.0.4) j.l.Boolean.valueOf(String) contains this code:
public static boolean parseBoolean(String s) {
return ((s != null) && s.equalsIgnoreCase("true"));
}
Null check here seems to be redundant, as String.equalsIgnoreCase does it
itself:
public boolean equalsIgnoreCase(Str