Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2012-07-09 08:52:40 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:40:46 +0300
commit7a8ffa56dbea0c4e34c6afe386dffb4d82bd5330 (patch)
tree265f2cdc8a9f6e6f5e729a4fe032e9b3d5a6d1e4 /android/src/com/mapswithme/maps/DownloadUI.java
parent83a0276371e741f18bbb7ca8a57825ff88ebe2c5 (diff)
[android] Do not delete countries before update downloading.
Diffstat (limited to 'android/src/com/mapswithme/maps/DownloadUI.java')
-rw-r--r--android/src/com/mapswithme/maps/DownloadUI.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/android/src/com/mapswithme/maps/DownloadUI.java b/android/src/com/mapswithme/maps/DownloadUI.java
index cf12dc0e26..5aca3d1dbb 100644
--- a/android/src/com/mapswithme/maps/DownloadUI.java
+++ b/android/src/com/mapswithme/maps/DownloadUI.java
@@ -253,10 +253,7 @@ public class DownloadUI extends ListActivity implements MapStorage.Listener
if (size > getFreeSpace())
showNotEnoughFreeSpaceDialog(getSizeString(size), name);
else
- {
- m_storage.deleteCountry(idx);
m_storage.downloadCountry(idx);
- }
dlg.dismiss();
}