diff options
author | Bananeweizen <Bananeweizen@gmx.de> | 2012-04-08 13:29:05 +0200 |
---|---|---|
committer | Bananeweizen <Bananeweizen@gmx.de> | 2012-04-08 13:29:05 +0200 |
commit | fd801ec1e37979db07aa64fec318954b37929558 (patch) | |
tree | 24271052a444d251d787f74c1c2f90a92a7a102c /main/src/cgeo/geocaching/connector | |
parent | b00eaf91c9258907bcd6f7897cd690c79ae9a1f0 (diff) | |
parent | 5fd86fa6a69fdc3e87cb04b59395e070851de1dd (diff) | |
download | cgeo-fd801ec1e37979db07aa64fec318954b37929558.zip cgeo-fd801ec1e37979db07aa64fec318954b37929558.tar.gz cgeo-fd801ec1e37979db07aa64fec318954b37929558.tar.bz2 |
Merge remote-tracking branch 'teschi/issue#1304'
Conflicts:
main/src/cgeo/geocaching/maps/CGeoMap.java
Diffstat (limited to 'main/src/cgeo/geocaching/connector')
-rw-r--r-- | main/src/cgeo/geocaching/connector/gc/GCBase.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/connector/gc/GCBase.java b/main/src/cgeo/geocaching/connector/gc/GCBase.java index 871e75a..d09f9af 100644 --- a/main/src/cgeo/geocaching/connector/gc/GCBase.java +++ b/main/src/cgeo/geocaching/connector/gc/GCBase.java @@ -17,7 +17,7 @@ import cgeo.geocaching.network.Login; import cgeo.geocaching.network.Network; import cgeo.geocaching.ui.Formatter; import cgeo.geocaching.utils.BaseUtils; -import cgeo.geocaching.utils.LeastRecentlyUsedCache; +import cgeo.geocaching.utils.LeastRecentlyUsedMap; import cgeo.geocaching.utils.Log; import org.apache.commons.collections.CollectionUtils; @@ -180,7 +180,7 @@ public class GCBase { try { - final LeastRecentlyUsedCache<String, String> nameCache = new LeastRecentlyUsedCache<String, String>(2000); // JSON id, cache name + final LeastRecentlyUsedMap<String, String> nameCache = new LeastRecentlyUsedMap.LruCache<String, String>(2000); // JSON id, cache name if (StringUtils.isEmpty(data)) { throw new JSONException("No page given"); |