am a921bf4e: Merge change I8f5e405f into eclair-mr2

Merge commit 'a921bf4e9ff32f4b561af077d11f5dc85ea67d33' into eclair-mr2-plus-aosp

* commit 'a921bf4e9ff32f4b561af077d11f5dc85ea67d33':
  mGeolocationDatabasePath needs to compare mGeolocationDatabasePath
This commit is contained in:
Grace Kloba
2009-10-07 18:06:27 -07:00
committed by Android Git Automerger

View File

@@ -1007,7 +1007,8 @@ public class WebSettings {
* should never be null. * should never be null.
*/ */
public synchronized void setGeolocationDatabasePath(String databasePath) { public synchronized void setGeolocationDatabasePath(String databasePath) {
if (databasePath != null && !databasePath.equals(mDatabasePath)) { if (databasePath != null
&& !databasePath.equals(mGeolocationDatabasePath)) {
mGeolocationDatabasePath = databasePath; mGeolocationDatabasePath = databasePath;
postSync(); postSync();
} }