Merge change I8f5e405f into eclair-mr2

* changes:
  mGeolocationDatabasePath needs to compare mGeolocationDatabasePath
This commit is contained in:
Android (Google) Code Review
2009-10-07 20:59:21 -04:00

View File

@@ -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();
}