Files
rr3-apk/decompiled/sources/com/google/firebase/remoteconfig/AutoValue_ConfigUpdate.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

39 lines
984 B
Java

package com.google.firebase.remoteconfig;
import java.util.Set;
/* loaded from: classes3.dex */
public final class AutoValue_ConfigUpdate extends ConfigUpdate {
public final Set updatedKeys;
@Override // com.google.firebase.remoteconfig.ConfigUpdate
public Set getUpdatedKeys() {
return this.updatedKeys;
}
public AutoValue_ConfigUpdate(Set set) {
if (set == null) {
throw new NullPointerException("Null updatedKeys");
}
this.updatedKeys = set;
}
public String toString() {
return "ConfigUpdate{updatedKeys=" + this.updatedKeys + "}";
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof ConfigUpdate) {
return this.updatedKeys.equals(((ConfigUpdate) obj).getUpdatedKeys());
}
return false;
}
public int hashCode() {
return this.updatedKeys.hashCode() ^ 1000003;
}
}