
https://docs.oracle.com/en/java/javase/21/docs/api/search.html?q=%s to https://docs.oracle.com/en/java/javase/25/docs/api/search.html?q=%s IO.print(switch (args[0])) {
case "-a" -> "🏴☠️";
case "-b" -> "🍺";
case "-h" -> "Hello,";
default -> args[0];
}
to
IO.print(switch (args[0]) {
case "-a" -> "🏴☠️";
case "-b" -> "🍺";
case "-h" -> "Hello,";
default -> args[0];
})
@see com.horstmann.corejava.Employee#<init>()to
@see com.horstmann.corejava.Employee#Employee(String, double, int, int, int)
public static Pair longestRun(double[] values)to
public static Range longestRun(double[] values)and “the nested
Pair class” to “the nested Range class”public static, in our case)” to “(such as public static)”minmax to min (2x)Pait<Manager> to Pair<Manager>new Pair<T>(new T(); new T()) to new Pair<T>(new T(), new T()) and Pair.makePair(String.class) to makePair(String.class)java v1ch09.set.SetDemo gutenberg/alice30.txtto
java v1ch09.SetDemo gutenberg/alice30.txt
newThreadPerTaskExecutor method” to “the newVirtualThreadPerTaskExecutor method”
post.properties file:
url=https://codecheck.io/run
Input=
Main.java=public class Main {\n\
public static void main(String[] args) {\n\
System.out.println("Hello, World!");\n\
}\n\
}\n
Thanks to Craig Davis, Amit Lamba, Michel (Mike) Rainville, Vincent Temmerman, John Westcroft, and (your name might go here) for their bug reports!
If you have found another bug in the book or in our code that is not mentioned in this bug list, then please send a report. Unfortunately, I cannot reply personally to each report, but I do read all your comments.