mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-16 00:19:27 +00:00
8214726: Typo in HeapShared::check_closed_archive_heap_region_object
Reviewed-by: lfoltan
This commit is contained in:
parent
e7aa2c0951
commit
fe1b0be809
@ -581,7 +581,7 @@ void HeapShared::check_closed_archive_heap_region_object(InstanceKlass* k,
|
||||
for (JavaFieldStream fs(k); !fs.done(); fs.next()) {
|
||||
if (!fs.access_flags().is_static()) {
|
||||
BasicType ft = fs.field_descriptor().field_type();
|
||||
if (!fs.access_flags().is_final() && (ft == T_ARRAY || T_OBJECT)) {
|
||||
if (!fs.access_flags().is_final() && (ft == T_ARRAY || ft == T_OBJECT)) {
|
||||
ResourceMark rm(THREAD);
|
||||
log_warning(cds, heap)(
|
||||
"Please check reference field in %s instance in closed archive heap region: %s %s",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user