8327812: JFR: Remove debug message in Function.Maximum

Reviewed-by: gli, mgronlun
This commit is contained in:
Erik Gahlin 2024-03-11 17:06:09 +00:00
parent b9bc31f720
commit c65d308973

@ -1,5 +1,5 @@
/*
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -275,9 +275,6 @@ abstract class Function {
@Override
public Object result() {
if (maximum == null) {
System.out.println("Why");
}
return maximum;
}
}