GP-0 Corrected AddressSetViewAdapter bug

This commit is contained in:
ghidra1 2024-04-23 16:11:15 -04:00
parent b77b4a4da5
commit c014e6851f

View File

@ -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();