diff options
Diffstat (limited to 'src/cgeo/geocaching/cgLog.java')
| -rw-r--r-- | src/cgeo/geocaching/cgLog.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgeo/geocaching/cgLog.java b/src/cgeo/geocaching/cgLog.java index 2d77a3d..ebf5699 100644 --- a/src/cgeo/geocaching/cgLog.java +++ b/src/cgeo/geocaching/cgLog.java @@ -1,6 +1,6 @@ package cgeo.geocaching; -import java.util.ArrayList; +import java.util.List; public class cgLog { public int id = 0; @@ -9,7 +9,7 @@ public class cgLog { public String log = ""; public long date = 0; public int found = -1; - public ArrayList<cgImage> logImages = null; + public List<cgImage> logImages = null; public String cacheName = ""; // used for trackables public String cacheGuid = ""; // used for trackables } |
