Skip to content

Commit

Permalink
GP-4459 fixed review notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ghidra007 committed Apr 1, 2024
1 parent 740f825 commit f0f2ffc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2495,7 +2495,7 @@ private Structure createClassStructureUsingRTTI(RecoveredClass recoveredClass,
* @param recoveredClass the given class
* @return the offset in the given class structure of the classes single virtual parent or NONE
* if cannot retrieve an offset value or if there is not a single virtual parent for the given
* class.
* class. Return null if cannot retrieve the offset for the single virtual parent.
* @throws CancelledException if cancelled
* @throws AddressOutOfBoundsException if trying to access an address that does not exist in program
* @throws MemoryAccessException if trying to access memory that can't be accessed
Expand All @@ -2517,7 +2517,7 @@ public Integer getSingleVirtualParentOffset(RecoveredClass recoveredClass)
private Map<RecoveredClass, Integer> getBaseClassOffsetMap(RecoveredClass recoveredClass)
throws CancelledException, MemoryAccessException, AddressOutOfBoundsException {

Map<RecoveredClass, Integer> baseClassOffsetMap = new HashMap<RecoveredClass, Integer>();
Map<RecoveredClass, Integer> baseClassOffsetMap = new HashMap<>();

Data baseClassArrayData = getBaseClassArray(recoveredClass);

Expand Down

0 comments on commit f0f2ffc

Please sign in to comment.