https://kotlinlang.org logo
d

debug

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