summaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/lockclock/weather/WeatherUpdateService.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/cyanogenmod/lockclock/weather/WeatherUpdateService.java')
-rw-r--r--src/com/cyanogenmod/lockclock/weather/WeatherUpdateService.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/com/cyanogenmod/lockclock/weather/WeatherUpdateService.java b/src/com/cyanogenmod/lockclock/weather/WeatherUpdateService.java
index 1fd6f70..c65dc86 100644
--- a/src/com/cyanogenmod/lockclock/weather/WeatherUpdateService.java
+++ b/src/com/cyanogenmod/lockclock/weather/WeatherUpdateService.java
@@ -44,8 +44,6 @@ import com.cyanogenmod.lockclock.misc.Constants;
import com.cyanogenmod.lockclock.misc.Preferences;
import com.cyanogenmod.lockclock.misc.WidgetUtils;
import com.cyanogenmod.lockclock.preference.WeatherPreferences;
-import com.google.android.gms.common.ConnectionResult;
-import com.google.android.gms.common.GooglePlayServicesUtil;
import cyanogenmod.weather.CMWeatherManager;
import cyanogenmod.weather.WeatherInfo;
import cyanogenmod.weather.WeatherLocation;
@@ -357,9 +355,7 @@ public class WeatherUpdateService extends Service {
}
private boolean isGooglePlayServicesAvailable() {
- int result = GooglePlayServicesUtil.isGooglePlayServicesAvailable(mContext);
- return result == ConnectionResult.SUCCESS
- || result == ConnectionResult.SERVICE_VERSION_UPDATE_REQUIRED;
+ return false;
}
private void onWeatherRequestCompleted(WeatherInfo result) {