f
is actually 1.23456792E8
” to “f
is actually 1.2345679E8F
”.tostatic of(int a) static of(int a, int b) static of(int a, int b, int c)
LambdaDemo
, change
var enemies = new ArrayList<String>(List.of("Malfoy", "Crabbe", "Goyle", null));to
var enemies = new ArrayList<String>(List.of("Malfoy", "Crabbe", "Goyle")); enemies.add(null);
hashCode
it is also rarely necessary. ” to “and it is also rarely necessary. ”Iterable
to Iterator
.String message = MessageFormat("It is now {0,time,short}.", Date.from(Instant.now()));to
String message = MessageFormat.format("It is now {0,time,short}.", Date.from(Instant.now()));
Parse.quote
to Pattern.quote
Thanks to Bruno Bravo, Alessio Del Monte, J. Kenny, Piotr Lesiakowski, Sen Turra, and (your name might go here) for their bug reports and suggestions!
Please use this form to report any bugs that you find. Please check the list of known bugs first before you report a bug. Unfortunately, I do not have the time to respond personally to every report, but I do read them all and will post updates to this page. Thank you!