aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgeo.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/cgeo.java')
-rw-r--r--main/src/cgeo/geocaching/cgeo.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/cgeo.java b/main/src/cgeo/geocaching/cgeo.java
index 4de8e50..6f2c758 100644
--- a/main/src/cgeo/geocaching/cgeo.java
+++ b/main/src/cgeo/geocaching/cgeo.java
@@ -9,7 +9,6 @@ import cgeo.geocaching.enumerations.StatusCode;
import cgeo.geocaching.enumerations.WaypointType;
import cgeo.geocaching.geopoint.Geopoint;
import cgeo.geocaching.maps.CGeoMap;
-import cgeo.geocaching.ui.CacheListAdapter;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
@@ -70,13 +69,13 @@ public class cgeo extends AbstractActivity {
TextView userInfoView = (TextView) findViewById(R.id.user_info);
- String userInfo = "geocaching.com" + CacheListAdapter.SEPARATOR;
+ String userInfo = "geocaching.com" + Constants.SEPARATOR;
if (cgBase.isActualLoginStatus()) {
userInfo += cgBase.getActualUserName();
if (cgBase.getActualCachesFound() >= 0) {
userInfo += " (" + String.valueOf(cgBase.getActualCachesFound()) + ")";
}
- userInfo += CacheListAdapter.SEPARATOR;
+ userInfo += Constants.SEPARATOR;
}
userInfo += cgBase.getActualStatus();