Removes unnecessary syncing of databse and app cache paths with browser settings XML.
These paths are not stored in the XML, so syncing is not required.
This code is probably a legacy from when there were plans to include the paths in the browser settings and hence the XML.
diff --git a/src/com/android/browser/BrowserSettings.java b/src/com/android/browser/BrowserSettings.java
index c1f14e3..0ebf7de 100644
--- a/src/com/android/browser/BrowserSettings.java
+++ b/src/com/android/browser/BrowserSettings.java
@@ -359,9 +359,6 @@
domStorageEnabled = p.getBoolean("enable_domstorage", domStorageEnabled);
geolocationEnabled = p.getBoolean("enable_geolocation", geolocationEnabled);
workersEnabled = p.getBoolean("enable_workers", workersEnabled);
- // HTML 5 configuration params
- appCachePath = p.getString("appcache_path", appCachePath);
- databasePath = p.getString("database_path", databasePath);
update();
}