mirror of
https://github.com/github/codeql.git
synced 2026-08-03 08:52:55 +02:00
14 lines
282 B
Java
Generated
14 lines
282 B
Java
Generated
// Generated automatically from okhttp3.Callback for testing purposes
|
|
|
|
package okhttp3;
|
|
|
|
import java.io.IOException;
|
|
import okhttp3.Call;
|
|
import okhttp3.Response;
|
|
|
|
public interface Callback
|
|
{
|
|
void onFailure(Call p0, IOException p1);
|
|
void onResponse(Call p0, Response p1);
|
|
}
|