Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

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