aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/cgSearch.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgeo/geocaching/cgSearch.java')
-rw-r--r--src/cgeo/geocaching/cgSearch.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgeo/geocaching/cgSearch.java b/src/cgeo/geocaching/cgSearch.java
index 8f40256..7b75760 100644
--- a/src/cgeo/geocaching/cgSearch.java
+++ b/src/cgeo/geocaching/cgSearch.java
@@ -4,7 +4,7 @@ import java.util.ArrayList;
import java.util.List;
public class cgSearch {
- private Long id = null;
+ private long id;
private List<String> geocodes = new ArrayList<String>();
public String error = null;
@@ -16,7 +16,7 @@ public class cgSearch {
id = System.currentTimeMillis(); // possible collisions here - not guaranteed to be unique
}
- public Long getCurrentId() {
+ public long getCurrentId() {
return id;
}