aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/connector
diff options
context:
space:
mode:
authorteschi <teschi+github@team23.org>2012-04-03 00:31:14 +0200
committerteschi <teschi+github@team23.org>2012-04-03 00:31:14 +0200
commit61fb8dd256aa799ba8ae464acd30879683f7f032 (patch)
tree4cd6272533d8110c343d335a6e888faaa7fe8081 /main/src/cgeo/geocaching/connector
parent2c42089c944a04cd430ef118754de0fb1067863c (diff)
downloadcgeo-61fb8dd256aa799ba8ae464acd30879683f7f032.zip
cgeo-61fb8dd256aa799ba8ae464acd30879683f7f032.tar.gz
cgeo-61fb8dd256aa799ba8ae464acd30879683f7f032.tar.bz2
renamed LeastRecentlyUsedCache to LeastRecentlyUsedMap
Diffstat (limited to 'main/src/cgeo/geocaching/connector')
-rw-r--r--main/src/cgeo/geocaching/connector/gc/GCBase.java4
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 cf768b8..d764c0b 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;
@@ -185,7 +185,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<String, String>(2000); // JSON id, cache name
if (StringUtils.isEmpty(data)) {
throw new JSONException("No page given");