8360403: Disable constant pool ID assert during troubleshooting

Reviewed-by: egahlin
This commit is contained in:
Markus Grönlund 2025-06-24 16:11:40 +00:00
parent f8de5bc582
commit cbcf401170

View File

@ -77,7 +77,7 @@ final class ConstantMap {
if (id != 0) {
String msg = "Missing object ID " + id + " in pool " + getName() + ". All IDs should reference an object";
Logger.log(LogTag.JFR_SYSTEM_PARSER, LogLevel.INFO, msg);
assert false : msg;
// assert false : msg;
}
return null;
}