15 lines
380 B
Java
15 lines
380 B
Java
package com.google.common.collect;
|
|
|
|
/* loaded from: classes.dex */
|
|
class EmptyImmutableSetMultimap extends ImmutableSetMultimap<Object, Object> {
|
|
static final EmptyImmutableSetMultimap a = new EmptyImmutableSetMultimap();
|
|
|
|
private EmptyImmutableSetMultimap() {
|
|
super(ImmutableMap.of(), 0, null);
|
|
}
|
|
|
|
private Object readResolve() {
|
|
return a;
|
|
}
|
|
}
|