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

Commit a921bf4e authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change I8f5e405f into eclair-mr2

* changes:
  mGeolocationDatabasePath needs to compare mGeolocationDatabasePath
parents d78fbddd 8f5e405f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1007,7 +1007,8 @@ public class WebSettings {
     *     should never be null.
     */
    public synchronized void setGeolocationDatabasePath(String databasePath) {
        if (databasePath != null && !databasePath.equals(mDatabasePath)) {
        if (databasePath != null
                && !databasePath.equals(mGeolocationDatabasePath)) {
            mGeolocationDatabasePath = databasePath;
            postSync();
        }