Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.google.firebase.remoteconfig;
|
||||
|
||||
import com.google.auto.value.AutoValue;
|
||||
import java.util.Set;
|
||||
|
||||
@AutoValue
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class ConfigUpdate {
|
||||
public static ConfigUpdate create(Set<String> set) {
|
||||
return new AutoValue_ConfigUpdate(set);
|
||||
}
|
||||
|
||||
public abstract Set<String> getUpdatedKeys();
|
||||
}
|
||||
Reference in New Issue
Block a user