Skip to content

Commit

Permalink
Merge pull request #20762 from ThanHenderson/hiddenws
Browse files Browse the repository at this point in the history
Fix incorrect indentation in VMSnapshotImpl.cpp
  • Loading branch information
keithc-ca authored Dec 5, 2024
2 parents f6d6d01 + 5450f25 commit 3c8d47b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions runtime/vm/VMSnapshotImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -377,16 +377,15 @@ VMSnapshotImpl::isImmortalClassLoader(J9ClassLoader *classLoader)
void
VMSnapshotImpl::saveHiddenInstanceFields()
{
_snapshotHeader->savedJavaVMStructs.hiddenInstanceFields = _vm->hiddenInstanceFields;
_snapshotHeader->savedJavaVMStructs.hiddenInstanceFields = _vm->hiddenInstanceFields;
}

void
VMSnapshotImpl::restoreHiddenInstanceFields()
{
_vm->hiddenInstanceFields = _snapshotHeader->savedJavaVMStructs.hiddenInstanceFields;
_vm->hiddenInstanceFields = _snapshotHeader->savedJavaVMStructs.hiddenInstanceFields;
}


void
printAllSegments(J9MemorySegmentList *segmentList, J9JavaVM *_vm)
{
Expand Down

0 comments on commit 3c8d47b

Please sign in to comment.