mirror of
https://github.com/github/codeql.git
synced 2026-08-03 08:52:55 +02:00
13 lines
272 B
Java
Generated
13 lines
272 B
Java
Generated
// Generated automatically from retrofit2.Callback for testing purposes
|
|
|
|
package retrofit2;
|
|
|
|
import retrofit2.Call;
|
|
import retrofit2.Response;
|
|
|
|
public interface Callback<T>
|
|
{
|
|
void onFailure(Call<T> p0, Throwable p1);
|
|
void onResponse(Call<T> p0, Response<T> p1);
|
|
}
|