- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
34 lines
802 B
Java
34 lines
802 B
Java
package com.google.common.collect;
|
|
|
|
import java.util.Collection;
|
|
import java.util.Iterator;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public abstract class AbstractMultimap implements Multimap {
|
|
@Override // com.google.common.collect.Multimap
|
|
public abstract Map asMap();
|
|
|
|
public boolean containsValue(Object obj) {
|
|
Iterator it = asMap().values().iterator();
|
|
while (it.hasNext()) {
|
|
if (((Collection) it.next()).contains(obj)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
return Multimaps.equalsImpl(this, obj);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return asMap().hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return asMap().toString();
|
|
}
|
|
}
|