mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Merge remote-tracking branch 'origin/GP-0-dragonmacher-marker-set-exception'
This commit is contained in:
commit
db2f54ab83
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ public class MarkerManager implements MarkerService {
|
|||
|
||||
List<MarkerSetImpl> copyMarkerSets(Program program) {
|
||||
MarkerSetCacheEntry entry = markerSetCache.get(program);
|
||||
return entry == null ? List.of() : entry.copyList();
|
||||
return entry == null ? Collections.emptyList() : entry.copyList();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue