aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/Trackable.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/Trackable.java')
-rw-r--r--main/src/cgeo/geocaching/Trackable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/Trackable.java b/main/src/cgeo/geocaching/Trackable.java
index d532cda..9c2b044 100644
--- a/main/src/cgeo/geocaching/Trackable.java
+++ b/main/src/cgeo/geocaching/Trackable.java
@@ -35,7 +35,7 @@ public class Trackable implements ILogable {
private String goal = null;
private String details = null;
private String image = null;
- private List<LogEntry> logs = new ArrayList<LogEntry>();
+ private List<LogEntry> logs = new ArrayList<>();
private String trackingcode = null;
public String getUrl() {
@@ -215,7 +215,7 @@ public class Trackable implements ILogable {
}
static public List<LogType> getPossibleLogTypes() {
- final List<LogType> logTypes = new ArrayList<LogType>();
+ final List<LogType> logTypes = new ArrayList<>();
logTypes.add(LogType.RETRIEVED_IT);
logTypes.add(LogType.GRABBED_IT);
logTypes.add(LogType.NOTE);