aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/LogEntry.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/LogEntry.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/LogEntry.java')
-rw-r--r--main/src/cgeo/geocaching/LogEntry.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/LogEntry.java b/main/src/cgeo/geocaching/LogEntry.java
index 9864f89..3130822 100644
--- a/main/src/cgeo/geocaching/LogEntry.java
+++ b/main/src/cgeo/geocaching/LogEntry.java
@@ -17,7 +17,7 @@ public final class LogEntry {
private static final List<cgImage> EMPTY_LIST = Collections.emptyList();
public int id = 0;
- public LogType type = LogType.LOG_NOTE; // note
+ public LogType type = LogType.NOTE; // note
public String author = "";
public String log = "";
public long date = 0;