mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +02:00
8214726: Typo in HeapShared::check_closed_archive_heap_region_object
Reviewed-by: lfoltan
This commit is contained in:
parent
e7aa2c0951
commit
fe1b0be809
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue