diff options
author | Christopher Baines <cbaines8@gmail.com> | 2012-03-07 23:18:50 +0000 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2012-03-07 23:18:50 +0000 |
commit | 26f11938b2467d6033ade06af57dc678dc3401cd (patch) | |
tree | f438b8162471041ebcc8f912dac2e348946c9bb7 /src/net/cbaines | |
parent | 07bd9e8e8797a0ee438e1026824ac253c168ff0e (diff) | |
download | southamptonuniversitymap-26f11938b2467d6033ade06af57dc678dc3401cd.tar southamptonuniversitymap-26f11938b2467d6033ade06af57dc678dc3401cd.tar.gz |
Bump version to 0.7.
Diffstat (limited to 'src/net/cbaines')
-rw-r--r-- | src/net/cbaines/suma/MapActivity.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/cbaines/suma/MapActivity.java b/src/net/cbaines/suma/MapActivity.java index 10df45e..6eab356 100644 --- a/src/net/cbaines/suma/MapActivity.java +++ b/src/net/cbaines/suma/MapActivity.java @@ -173,7 +173,7 @@ public class MapActivity extends ToastHelperActivity implements MapViewConstants private MapActivity instance; - private static final String TAG = "SUM"; + private static final String TAG = "MapActivity"; @SuppressWarnings("unchecked") public void onCreate(Bundle savedInstanceState) { @@ -476,7 +476,7 @@ public class MapActivity extends ToastHelperActivity implements MapViewConstants Log.i(TAG, "Begining to show the route overlays at " + (System.currentTimeMillis() - startTime)); for (BusRoute busRoute : getHelper().getBusRouteDao()) { if (!busRoute.uniLink) { - Log.v(TAG, "Bus route " + busRoute.code + "(" + busRoute.id + ") is not unilink"); + // Log.v(TAG, "Bus route " + busRoute.code + "(" + busRoute.id + ") is not unilink"); continue; } Log.v(TAG, "Looking at showing " + busRoute.code + " route overlay"); @@ -489,7 +489,7 @@ public class MapActivity extends ToastHelperActivity implements MapViewConstants Log.i(TAG, "Begining to show the site overlays at " + (System.currentTimeMillis() - startTime)); try { for (Site site : getHelper().getSiteDao()) { - Log.v(TAG, "Looking at showing " + site.name + " site overlay"); + // Log.v(TAG, "Looking at showing " + site.name + " site overlay"); if (activityPrefs.getBoolean(SITE_OVERLAYS + site.name, SITE_OVERLAYS_ENABLED_BY_DEFAULT)) { showSiteOverlay(site); } |