mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-26 16:45:41 +08:00
GP-0 Corrected AddressSetViewAdapter bug
This commit is contained in:
+10
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user