Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -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 + "}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user