Skip to content
Closed
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 @@ -29,7 +29,7 @@ final class RegularImmutableBiMap<K, V> extends ImmutableBiMap<K, V> {
static final RegularImmutableBiMap<Object, Object> EMPTY =
new RegularImmutableBiMap<Object, Object>();

private final ImmutableBiMap<V, K> inverse;
private final transient ImmutableBiMap<V, K> inverse;

@SuppressWarnings("unchecked") // used only for the empty map, which works for any types
RegularImmutableBiMap() {
Expand Down