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
path: root/api
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@mapswithme.com>2013-06-25 17:35:31 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:56:56 +0300
commit668536cd740838c3057803bd7ccde4d69e9d979e (patch)
treee8a5840d08cfc732a2e80e0b5ce858027b7c131b /api
parentadbc00b0ca795b8ff6260808fb6052fee16e1f5c (diff)
[api] Renamed u parameter to id
Diffstat (limited to 'api')
-rw-r--r--api/android/lib/src/com/mapswithme/maps/api/MapsWithMeApi.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/android/lib/src/com/mapswithme/maps/api/MapsWithMeApi.java b/api/android/lib/src/com/mapswithme/maps/api/MapsWithMeApi.java
index b324165854..8f379f3ad2 100644
--- a/api/android/lib/src/com/mapswithme/maps/api/MapsWithMeApi.java
+++ b/api/android/lib/src/com/mapswithme/maps/api/MapsWithMeApi.java
@@ -138,7 +138,7 @@ public final class MapsWithMeApi
.append(String.format(Locale.US, "%f,%f&", point.getLat(), point.getLon()));
appendIfNotNull(urlBuilder, "n", point.getName());
- appendIfNotNull(urlBuilder, "u", point.getId());
+ appendIfNotNull(urlBuilder, "id", point.getId());
}
}