aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/export/FieldnoteExport.java
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2012-05-01 08:15:49 +0200
committerBananeweizen <bananeweizen@gmx.de>2012-05-01 08:15:49 +0200
commite3f07c229b048d39bcb61db16545648aa697e0d6 (patch)
treee33f3d7b7adb9b453964f7024b450899a424e2ce /main/src/cgeo/geocaching/export/FieldnoteExport.java
parent5709b30c25a2dbc79454c8f5150f676de0e49a75 (diff)
downloadcgeo-e3f07c229b048d39bcb61db16545648aa697e0d6.zip
cgeo-e3f07c229b048d39bcb61db16545648aa697e0d6.tar.gz
cgeo-e3f07c229b048d39bcb61db16545648aa697e0d6.tar.bz2
refactoring: rename log typ enums for easier code completion and
reading
Diffstat (limited to 'main/src/cgeo/geocaching/export/FieldnoteExport.java')
-rw-r--r--main/src/cgeo/geocaching/export/FieldnoteExport.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/main/src/cgeo/geocaching/export/FieldnoteExport.java b/main/src/cgeo/geocaching/export/FieldnoteExport.java
index babc4b6..3fb6cd9 100644
--- a/main/src/cgeo/geocaching/export/FieldnoteExport.java
+++ b/main/src/cgeo/geocaching/export/FieldnoteExport.java
@@ -129,14 +129,14 @@ class FieldnoteExport extends AbstractExport {
// different strings than gc.com expects in the field note
// We only need such logtypes that are possible to log via c:geo
Map<LogType, String> logTypes = new HashMap<LogType, String>();
- logTypes.put(LogType.LOG_FOUND_IT, "Found it");
- logTypes.put(LogType.LOG_DIDNT_FIND_IT, "Didn't find it");
- logTypes.put(LogType.LOG_NOTE, "Write Note");
- logTypes.put(LogType.LOG_NEEDS_ARCHIVE, "Needs archived");
- logTypes.put(LogType.LOG_NEEDS_MAINTENANCE, "Needs Maintenance");
- logTypes.put(LogType.LOG_WILL_ATTEND, "Will Attend");
- logTypes.put(LogType.LOG_ATTENDED, "Attended");
- logTypes.put(LogType.LOG_WEBCAM_PHOTO_TAKEN, "Webcam Photo Taken");
+ logTypes.put(LogType.FOUND_IT, "Found it");
+ logTypes.put(LogType.DIDNT_FIND_IT, "Didn't find it");
+ logTypes.put(LogType.NOTE, "Write Note");
+ logTypes.put(LogType.NEEDS_ARCHIVE, "Needs archived");
+ logTypes.put(LogType.NEEDS_MAINTENANCE, "Needs Maintenance");
+ logTypes.put(LogType.WILL_ATTEND, "Will Attend");
+ logTypes.put(LogType.ATTENDED, "Attended");
+ logTypes.put(LogType.WEBCAM_PHOTO_TAKEN, "Webcam Photo Taken");
for (int i = 0; i < caches.size(); i++) {
try {