diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-09-14 07:51:24 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-09-14 07:51:24 +0200 |
| commit | 8987674ab4882f7684c773fc181f5a3fac5f8f12 (patch) | |
| tree | d54dbf08cbee8791c5cc7853bab55779a179c7d0 /main/src/cgeo/geocaching/files | |
| parent | 7f42e219f58d14f7f4a8bf27886bb615c918a6b2 (diff) | |
| download | cgeo-8987674ab4882f7684c773fc181f5a3fac5f8f12.zip cgeo-8987674ab4882f7684c773fc181f5a3fac5f8f12.tar.gz cgeo-8987674ab4882f7684c773fc181f5a3fac5f8f12.tar.bz2 | |
refactoring: introduce PseudoList to handle non concrete lists
* should make adding a history list entry easier
* includes some non null annotations
* moved list code into separate package
Diffstat (limited to 'main/src/cgeo/geocaching/files')
| -rw-r--r-- | main/src/cgeo/geocaching/files/AbstractFileListActivity.java | 2 | ||||
| -rw-r--r-- | main/src/cgeo/geocaching/files/GPXParser.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/files/AbstractFileListActivity.java b/main/src/cgeo/geocaching/files/AbstractFileListActivity.java index b0aba58..012f8b3 100644 --- a/main/src/cgeo/geocaching/files/AbstractFileListActivity.java +++ b/main/src/cgeo/geocaching/files/AbstractFileListActivity.java @@ -2,8 +2,8 @@ package cgeo.geocaching.files; import cgeo.geocaching.Intents; import cgeo.geocaching.R; -import cgeo.geocaching.StoredList; import cgeo.geocaching.activity.AbstractListActivity; +import cgeo.geocaching.list.StoredList; import cgeo.geocaching.utils.FileUtils; import cgeo.geocaching.utils.Log; diff --git a/main/src/cgeo/geocaching/files/GPXParser.java b/main/src/cgeo/geocaching/files/GPXParser.java index 686bfb1..dc21552 100644 --- a/main/src/cgeo/geocaching/files/GPXParser.java +++ b/main/src/cgeo/geocaching/files/GPXParser.java @@ -4,7 +4,6 @@ import cgeo.geocaching.DataStore; import cgeo.geocaching.Geocache; import cgeo.geocaching.LogEntry; import cgeo.geocaching.R; -import cgeo.geocaching.StoredList; import cgeo.geocaching.Trackable; import cgeo.geocaching.Waypoint; import cgeo.geocaching.CgeoApplication; @@ -17,6 +16,7 @@ import cgeo.geocaching.enumerations.LoadFlags.SaveFlag; import cgeo.geocaching.enumerations.LogType; import cgeo.geocaching.enumerations.WaypointType; import cgeo.geocaching.geopoint.Geopoint; +import cgeo.geocaching.list.StoredList; import cgeo.geocaching.utils.CancellableHandler; import cgeo.geocaching.utils.Log; import cgeo.geocaching.utils.MatcherWrapper; |
