aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/ui/LoggingUI.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2013-09-13 09:22:41 +0200
committerSamuel Tardieu <sam@rfc1149.net>2013-09-13 09:46:36 +0200
commit15282e600a818c2e4d3b5fc21e8a2d5143d818e5 (patch)
tree3491c025204d27052d36664d1302a6e5defbb9b7 /main/src/cgeo/geocaching/ui/LoggingUI.java
parente0d2a7ff191024c39b3b65fd7f0d52d6340bebbe (diff)
downloadcgeo-15282e600a818c2e4d3b5fc21e8a2d5143d818e5.zip
cgeo-15282e600a818c2e4d3b5fc21e8a2d5143d818e5.tar.gz
cgeo-15282e600a818c2e4d3b5fc21e8a2d5143d818e5.tar.bz2
refactoring: cgData -> DataStore
Diffstat (limited to 'main/src/cgeo/geocaching/ui/LoggingUI.java')
-rw-r--r--main/src/cgeo/geocaching/ui/LoggingUI.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/ui/LoggingUI.java b/main/src/cgeo/geocaching/ui/LoggingUI.java
index c2e2d24..1423da2 100644
--- a/main/src/cgeo/geocaching/ui/LoggingUI.java
+++ b/main/src/cgeo/geocaching/ui/LoggingUI.java
@@ -1,9 +1,9 @@
package cgeo.geocaching.ui;
+import cgeo.geocaching.DataStore;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.LogEntry;
import cgeo.geocaching.R;
-import cgeo.geocaching.cgData;
import cgeo.geocaching.enumerations.LogType;
import cgeo.geocaching.settings.Settings;
@@ -74,7 +74,7 @@ public class LoggingUI extends AbstractUIFactory {
}
private static void showOfflineMenu(final Geocache cache, final Activity activity) {
- final LogEntry currentLog = cgData.loadLogOffline(cache.getGeocode());
+ final LogEntry currentLog = DataStore.loadLogOffline(cache.getGeocode());
final LogType currentLogType = currentLog == null ? null : currentLog.type;
final List<LogType> logTypes = cache.getPossibleLogTypes();