Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package com.google.firebase.internal;
|
||||
|
||||
import com.google.android.gms.common.annotation.KeepForSdk;
|
||||
import com.google.android.gms.common.internal.Objects;
|
||||
|
||||
@KeepForSdk
|
||||
/* loaded from: classes3.dex */
|
||||
public class InternalTokenResult {
|
||||
private String zza;
|
||||
|
||||
@KeepForSdk
|
||||
public InternalTokenResult(String str) {
|
||||
this.zza = str;
|
||||
}
|
||||
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof InternalTokenResult) {
|
||||
return Objects.equal(this.zza, ((InternalTokenResult) obj).zza);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@KeepForSdk
|
||||
public String getToken() {
|
||||
return this.zza;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Objects.hashCode(this.zza);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return Objects.toStringHelper(this).add("token", this.zza).toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user