aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgCache.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/cgCache.java')
-rw-r--r--main/src/cgeo/geocaching/cgCache.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/cgCache.java b/main/src/cgeo/geocaching/cgCache.java
index de35008..073cb63 100644
--- a/main/src/cgeo/geocaching/cgCache.java
+++ b/main/src/cgeo/geocaching/cgCache.java
@@ -114,7 +114,7 @@ public class cgCache implements ICache, IWaypoint {
return cgData.loadLogs(geocode);
}
};
- private List<cgTrackable> inventory = null;
+ private List<Trackable> inventory = null;
private Map<LogType, Integer> logCounts = new HashMap<LogType, Integer>();
private boolean logOffline = false;
private boolean userModifiedCoords = false;
@@ -724,7 +724,7 @@ public class cgCache implements ICache, IWaypoint {
}
@Override
- public List<cgTrackable> getInventory() {
+ public List<Trackable> getInventory() {
return inventory;
}
@@ -1089,7 +1089,7 @@ public class cgCache implements ICache, IWaypoint {
this.spoilers = spoilers;
}
- public void setInventory(List<cgTrackable> inventory) {
+ public void setInventory(List<Trackable> inventory) {
this.inventory = inventory;
}