mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
15 lines
271 B
Java
Generated
15 lines
271 B
Java
Generated
// Generated automatically from okio.Source for testing purposes
|
|
|
|
package okio;
|
|
|
|
import java.io.Closeable;
|
|
import okio.Buffer;
|
|
import okio.Timeout;
|
|
|
|
public interface Source extends Closeable
|
|
{
|
|
Timeout timeout();
|
|
long read(Buffer p0, long p1);
|
|
void close();
|
|
}
|