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