13 lines
302 B
Java
13 lines
302 B
Java
package com.google.common.primitives;
|
|
|
|
import com.google.common.base.Preconditions;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class SignedBytes {
|
|
public static byte a(long j) {
|
|
byte b = (byte) j;
|
|
Preconditions.a(((long) b) == j, "Out of range: %s", j);
|
|
return b;
|
|
}
|
|
}
|