debug
03/16/2016, 7:46 AMnew Callback<$TypeParameter$>(){@$Annotation$
public $ReturnType$ onResponse($ParameterType2$ $Parameter2$, $ParameterType$ $Parameter$) {
$Statements$
}
@$Annotation$
public $ReturnType$ onFailure($ParameterType3$ $Parameter3$) {
$Statements2$
}}
to be replaced with:
new Callback<$TypeParameter$>(){@$Annotation$
public $ReturnType$ onResponse(Call<$TypeParameter$> call, $ParameterType2$ $Parameter2$) {
$Statements$
}
@$Annotation$
public $ReturnType$ onFailure(Call<$TypeParameter$> call, $ParameterType3$ $Parameter3$) {
$Statements2$
}}