mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
12 lines
263 B
Java
12 lines
263 B
Java
package com.google.common.io;
|
|
|
|
import java.io.IOException;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
public interface LineProcessor<T> {
|
|
@ParametricNullness
|
|
T getResult();
|
|
|
|
boolean processLine(String str) throws IOException;
|
|
}
|