Rabbit-R1/android (non root)/java/sources/com/google/common/io/ByteProcessor.java
2024-05-21 17:08:36 -04:00

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;
}