string name: "response" better than "result"

This commit is contained in:
ikarulus 2019-01-13 20:54:26 +01:00
parent 5f615d7445
commit d83312bc4d

View file

@ -1,5 +1,5 @@
package com.example.hochi.nextcompanion; package com.example.hochi.nextcompanion;
interface AsyncTaskCallbacks<T> { interface AsyncTaskCallbacks<T> {
void onTaskComplete(T result); void onTaskComplete(T response);
} }