Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,84 @@
package com.google.android.gms.common.internal;
import android.os.Bundle;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
import kotlinx.serialization.json.internal.AbstractJsonLexerKt;
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
/* JADX INFO: loaded from: classes2.dex */
public final class Objects {
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
public static final class ToStringHelper {
private final List zza;
private final Object zzb;
/* synthetic */ ToStringHelper(Object obj, zzai zzaiVar) {
Preconditions.checkNotNull(obj);
this.zzb = obj;
this.zza = new ArrayList();
}
public ToStringHelper add(String str, Object obj) {
Preconditions.checkNotNull(str);
this.zza.add(str + "=" + String.valueOf(obj));
return this;
}
public String toString() {
StringBuilder sb = new StringBuilder(100);
sb.append(this.zzb.getClass().getSimpleName());
sb.append(AbstractJsonLexerKt.BEGIN_OBJ);
int size = this.zza.size();
for (int i = 0; i < size; i++) {
sb.append((String) this.zza.get(i));
if (i < size - 1) {
sb.append(", ");
}
}
sb.append(AbstractJsonLexerKt.END_OBJ);
return sb.toString();
}
}
private Objects() {
throw new AssertionError("Uninstantiable");
}
public static boolean checkBundlesEquality(Bundle bundle, Bundle bundle2) {
if (bundle == null || bundle2 == null) {
return bundle == bundle2;
}
if (bundle.size() != bundle2.size()) {
return false;
}
Set<String> setKeySet = bundle.keySet();
if (!setKeySet.containsAll(bundle2.keySet())) {
return false;
}
for (String str : setKeySet) {
if (!equal(bundle.get(str), bundle2.get(str))) {
return false;
}
}
return true;
}
public static boolean equal(Object obj, Object obj2) {
if (obj != obj2) {
return obj != null && obj.equals(obj2);
}
return true;
}
public static int hashCode(Object... objArr) {
return Arrays.hashCode(objArr);
}
public static ToStringHelper toStringHelper(Object obj) {
return new ToStringHelper(obj, null);
}
}