mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-0 Corrected AddressSetViewAdapter bug
This commit is contained in:
parent
b77b4a4da5
commit
c014e6851f
1 changed files with 10 additions and 0 deletions
|
@ -180,6 +180,16 @@ public class AddressSetViewAdapter implements AddressSetView {
|
|||
return set.findFirstAddressInCommon(otherSet);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
return set.equals(obj);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return set.hashCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return set.toString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue