public static <T extends Context> APIInterface getServiceInstance(T context) {
if (apiInterface == null) {
// do Something
}
return apiInterface;
}
Этот метод в настоящее время принимает все объекты .. Activity.this .. getApplicationContext (), getContext () и getBaseContext ()
Можем ли мы ограничить этот метод только принятием объекта Context в качестве параметра / не Activity.
Спасибо