mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-23 15:42:34 -06:00
32 lines
1.9 KiB
Java
32 lines
1.9 KiB
Java
package okio;
|
|
|
|
import io.flutter.plugin.editing.SpellCheckPlugin;
|
|
import kotlin.Deprecated;
|
|
import kotlin.DeprecationLevel;
|
|
import kotlin.Metadata;
|
|
import kotlin.ReplaceWith;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* compiled from: -DeprecatedUtf8.kt */
|
|
@Deprecated(message = "changed in Okio 2.x")
|
|
@Metadata(bv = {1, 0, 3}, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\bÇ\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002J\u0010\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0007J \u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\bH\u0007¨\u0006\n"}, d2 = {"Lokio/-DeprecatedUtf8;", "", "()V", "size", "", "string", "", "beginIndex", "", SpellCheckPlugin.END_INDEX_KEY, "okio"}, k = 1, mv = {1, 4, 0})
|
|
/* renamed from: okio.-DeprecatedUtf8, reason: invalid class name */
|
|
/* loaded from: classes3.dex */
|
|
public final class DeprecatedUtf8 {
|
|
public static final DeprecatedUtf8 INSTANCE = new DeprecatedUtf8();
|
|
|
|
private DeprecatedUtf8() {
|
|
}
|
|
|
|
@Deprecated(level = DeprecationLevel.ERROR, message = "moved to extension function", replaceWith = @ReplaceWith(expression = "string.utf8Size()", imports = {"okio.utf8Size"}))
|
|
public final long size(String string) {
|
|
Intrinsics.checkNotNullParameter(string, "string");
|
|
return Utf8.size$default(string, 0, 0, 3, null);
|
|
}
|
|
|
|
@Deprecated(level = DeprecationLevel.ERROR, message = "moved to extension function", replaceWith = @ReplaceWith(expression = "string.utf8Size(beginIndex, endIndex)", imports = {"okio.utf8Size"}))
|
|
public final long size(String string, int beginIndex, int endIndex) {
|
|
Intrinsics.checkNotNullParameter(string, "string");
|
|
return Utf8.size(string, beginIndex, endIndex);
|
|
}
|
|
}
|