Skip to content
Open
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
abstract sealed class AbstractImmutableSortedMap<K, V extends @Nullable Object>
extends AbstractImmutableMap<K, V> implements OurSortedMap<K, V>
permits OurSortedMap.EmptyImmutableOurSortedMap,
PathCopyingPersistentAvlTreeMap,
PathCopyingPersistentAvlTreeMap.PartialSortedMap,
PathCopyingPersistentTreeMap,
PathCopyingPersistentTreeMap.PartialSortedMap {

Expand Down
1 change: 1 addition & 0 deletions src/org/sosy_lab/common/collect/OurSortedMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
sealed interface OurSortedMap<K, V extends @Nullable Object> extends NavigableMap<K, V>
permits AbstractImmutableSortedMap,
DescendingSortedMap,
PathCopyingPersistentAvlTreeMap.PartialSortedMap,
PathCopyingPersistentTreeMap.PartialSortedMap {

Iterator<Entry<K, V>> entryIterator();
Expand Down
Loading