Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 141e00c2 authored by Marc Blank's avatar Marc Blank
Browse files

Fix broken build due to rename of Geocoder.isImplemented

Change-Id: I350d560bc99661550f939f70b6abcb40bbe44bfc
parent f2c4edba
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -16,10 +16,6 @@

package com.android.server.location;

import java.util.Locale;
import java.util.Timer;
import java.util.TimerTask;

import android.content.Context;
import android.location.Country;
import android.location.CountryListener;
@@ -31,6 +27,10 @@ import android.telephony.TelephonyManager;
import android.text.TextUtils;
import android.util.Slog;

import java.util.Locale;
import java.util.Timer;
import java.util.TimerTask;

/**
 * This class is used to detect the country where the user is. The sources of
 * country are queried in order of reliability, like
@@ -354,6 +354,6 @@ public class ComprehensiveCountryDetector extends CountryDetectorBase {
    }

    protected boolean isGeoCoderImplemented() {
        return Geocoder.isImplemented();
        return Geocoder.isPresent();
    }
}