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?