mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
Updated marker set use of empty list to fix an exception
This commit is contained in:
parent
21aa55cf2d
commit
02f736be1f
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