what-the-bank/sources/com/google/common/collect/EmptyImmutableListMultimap....

17 lines
517 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.common.collect;
/* JADX INFO: Access modifiers changed from: package-private */
/* loaded from: classes2.dex */
public class EmptyImmutableListMultimap extends ImmutableListMultimap<Object, Object> {
static final EmptyImmutableListMultimap INSTANCE = new EmptyImmutableListMultimap();
private static final long serialVersionUID = 0;
private EmptyImmutableListMultimap() {
super(ImmutableMap.of(), 0);
}
private Object readResolve() {
return INSTANCE;
}
}