Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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