aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/cgCacheWrap.java
diff options
context:
space:
mode:
authorGerald Barker <geraldbarker@gmail.com>2011-09-03 21:55:21 +0100
committerGerald Barker <geraldbarker@gmail.com>2011-09-03 21:55:21 +0100
commit10b3f8f05d318aac6d83d4af77f6479ff01bfe1f (patch)
treed3a0b9505963505e42b1fe89885839e56cfdf720 /src/cgeo/geocaching/cgCacheWrap.java
parent5878215750b36147e31d4e44d39f5cee5a686a24 (diff)
downloadcgeo-10b3f8f05d318aac6d83d4af77f6479ff01bfe1f.zip
cgeo-10b3f8f05d318aac6d83d4af77f6479ff01bfe1f.tar.gz
cgeo-10b3f8f05d318aac6d83d4af77f6479ff01bfe1f.tar.bz2
Refactor to address issue #361
Diffstat (limited to 'src/cgeo/geocaching/cgCacheWrap.java')
-rw-r--r--src/cgeo/geocaching/cgCacheWrap.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgeo/geocaching/cgCacheWrap.java b/src/cgeo/geocaching/cgCacheWrap.java
index bfa5b8f..ccf6fa7 100644
--- a/src/cgeo/geocaching/cgCacheWrap.java
+++ b/src/cgeo/geocaching/cgCacheWrap.java
@@ -1,6 +1,7 @@
package cgeo.geocaching;
import java.util.ArrayList;
+import java.util.List;
/**
* List of caches
@@ -10,5 +11,5 @@ public class cgCacheWrap {
public String url = "";
public String[] viewstates = null;
public int totalCnt = 0;
- public ArrayList<cgCache> cacheList = new ArrayList<cgCache>();
+ public List<cgCache> cacheList = new ArrayList<cgCache>();
} \ No newline at end of file