get non-null systemService

106 Views Asked by At

Every time I'm assigning getSystemService to some variable I have to check later if it is null, eg.

LocationManager mLocationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (mLocationManager != null) {...}

Is there any way to make it non null for sure?

0

There are 0 best solutions below