Merge remote-tracking branch 'origin/GP-0-dragonmacher-marker-set-exception'

This commit is contained in:
Ryan Kurtz 2022-03-16 13:21:46 -04:00
commit db2f54ab83

View file

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