Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
package com.google.android.gms.internal.common;
|
||||
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
import javax.annotation.CheckForNull;
|
||||
import kotlinx.serialization.json.internal.AbstractJsonLexerKt;
|
||||
import org.jspecify.nullness.NullMarked;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@NullMarked
|
||||
public final class zzy {
|
||||
public static String zza(@CheckForNull String str, @CheckForNull Object... objArr) {
|
||||
int length;
|
||||
int length2;
|
||||
int iIndexOf;
|
||||
String string;
|
||||
int i = 0;
|
||||
int i2 = 0;
|
||||
while (true) {
|
||||
length = objArr.length;
|
||||
if (i2 >= length) {
|
||||
break;
|
||||
}
|
||||
Object obj = objArr[i2];
|
||||
if (obj == null) {
|
||||
string = "null";
|
||||
} else {
|
||||
try {
|
||||
string = obj.toString();
|
||||
} catch (Exception e) {
|
||||
String str2 = obj.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(obj));
|
||||
Logger.getLogger("com.google.common.base.Strings").logp(Level.WARNING, "com.google.common.base.Strings", "lenientToString", "Exception during lenientFormat for ".concat(str2), (Throwable) e);
|
||||
string = "<" + str2 + " threw " + e.getClass().getName() + ">";
|
||||
}
|
||||
}
|
||||
objArr[i2] = string;
|
||||
i2++;
|
||||
}
|
||||
StringBuilder sb = new StringBuilder(str.length() + (length * 16));
|
||||
int i3 = 0;
|
||||
while (true) {
|
||||
length2 = objArr.length;
|
||||
if (i >= length2 || (iIndexOf = str.indexOf("%s", i3)) == -1) {
|
||||
break;
|
||||
}
|
||||
sb.append((CharSequence) str, i3, iIndexOf);
|
||||
sb.append(objArr[i]);
|
||||
i3 = iIndexOf + 2;
|
||||
i++;
|
||||
}
|
||||
sb.append((CharSequence) str, i3, str.length());
|
||||
if (i < length2) {
|
||||
sb.append(" [");
|
||||
sb.append(objArr[i]);
|
||||
for (int i4 = i + 1; i4 < objArr.length; i4++) {
|
||||
sb.append(", ");
|
||||
sb.append(objArr[i4]);
|
||||
}
|
||||
sb.append(AbstractJsonLexerKt.END_LIST);
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user