16 lines
347 B
Java
16 lines
347 B
Java
package com.google.common.primitives;
|
|
|
|
import com.google.common.base.Preconditions;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class UnsignedBytes {
|
|
public static byte a(long j) {
|
|
Preconditions.a((j >> 8) == 0, "out of range: %s", j);
|
|
return (byte) j;
|
|
}
|
|
|
|
public static int a(byte b) {
|
|
return b & 255;
|
|
}
|
|
}
|