mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 00:52:31 -06:00
14 lines
368 B
Java
14 lines
368 B
Java
package com.google.common.io;
|
|
|
|
import com.google.errorprone.annotations.DoNotMock;
|
|
import java.io.IOException;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
@DoNotMock("Implement it normally")
|
|
/* loaded from: classes3.dex */
|
|
public interface ByteProcessor<T> {
|
|
@ParametricNullness
|
|
T getResult();
|
|
|
|
boolean processBytes(byte[] bArr, int i, int i2) throws IOException;
|
|
}
|