From 930f1771a4df314f3a727b035c1c5f1c1074aedb Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 4 Mar 2012 20:17:38 +0000 Subject: Add back the building ID to the POI View. --- src/net/cbaines/suma/POIView.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/net/cbaines/suma/POIView.java b/src/net/cbaines/suma/POIView.java index 95c571c..6324aeb 100644 --- a/src/net/cbaines/suma/POIView.java +++ b/src/net/cbaines/suma/POIView.java @@ -91,11 +91,7 @@ public class POIView extends LinearLayout implements Preferences { Building building = (Building) poi; // Log.i(TAG, "Its a building of name " + building.name); - if (identifiersEnabled) { - name.setText(building.name + " (" + building.id + ")"); - } else { - name.setText(building.name); - } + name.setText(building.name + " (" + building.id + ")"); } else if (poi.type == POI.BUS_STOP) { BusStop busStop = (BusStop) poi; -- cgit v1.2.3