package com.google.firebase.remoteconfig; import java.util.Set; /* loaded from: classes3.dex */ final class AutoValue_ConfigUpdate extends ConfigUpdate { private final Set updatedKeys; public AutoValue_ConfigUpdate(Set 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 getUpdatedKeys() { return this.updatedKeys; } public int hashCode() { return this.updatedKeys.hashCode() ^ 1000003; } public String toString() { return "ConfigUpdate{updatedKeys=" + this.updatedKeys + "}"; } }