The class jdk.jfr.internal.query.Function.Maximum contains the following code:
if (maximum == null) {
System.out.println("Why");
}
The System.out.println message should be removed. It's hard to trigger with the existing views since the MAX function is typically used with numeric values and they are never null.
if (maximum == null) {
System.out.println("Why");
}
The System.out.println message should be removed. It's hard to trigger with the existing views since the MAX function is typically used with numeric values and they are never null.