mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-0 Correct concurrent modification exception for build help
This commit is contained in:
parent
b6100233dd
commit
6e5875cef3
2 changed files with 2 additions and 2 deletions
|
@ -112,7 +112,7 @@ public class AnchorManager {
|
|||
}
|
||||
|
||||
private void cleanupDuplicateAnchors() {
|
||||
Set<String> keySet = duplicateAnchorsById.keySet();
|
||||
Set<String> keySet = new HashSet<>(duplicateAnchorsById.keySet());
|
||||
for (String id : keySet) {
|
||||
List<AnchorDefinition> list = duplicateAnchorsById.get(id);
|
||||
for (Iterator<AnchorDefinition> iterator = list.iterator(); iterator.hasNext();) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue