diff options
Diffstat (limited to 'src/net/cbaines/suma/BusStopSpecificTimetableAdapter.java')
-rw-r--r-- | src/net/cbaines/suma/BusStopSpecificTimetableAdapter.java | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/net/cbaines/suma/BusStopSpecificTimetableAdapter.java b/src/net/cbaines/suma/BusStopSpecificTimetableAdapter.java index 511f427..cd2a5cf 100644 --- a/src/net/cbaines/suma/BusStopSpecificTimetableAdapter.java +++ b/src/net/cbaines/suma/BusStopSpecificTimetableAdapter.java @@ -19,7 +19,6 @@ package net.cbaines.suma; -import android.util.Log; import android.view.View; import android.view.ViewGroup; import android.view.animation.Animation; @@ -33,7 +32,7 @@ public class BusStopSpecificTimetableAdapter extends BaseAdapter { private final Animation a; private boolean[] changed; - private static final String TAG = "TimetableAdapter"; + // private static final String TAG = "BusStopSpecificTimetableAdapter"; public BusStopSpecificTimetableAdapter(BusStopActivity context, Timetable timetable) { this.context = context; @@ -42,7 +41,7 @@ public class BusStopSpecificTimetableAdapter extends BaseAdapter { } public View getView(int position, View convertView, ViewGroup parent) { - Log.i(TAG, "Returning stop " + position + " " + timetable.get(position)); + // Log.i(TAG, "Returning stop " + position + " " + timetable.get(position)); BusStopSpecificStopView stopView; if (convertView == null) { @@ -55,7 +54,7 @@ public class BusStopSpecificTimetableAdapter extends BaseAdapter { if (changed == null || changed[position]) { a.reset(); stopView.startAnimation(a); - Log.i(TAG, "Animating it"); + // Log.i(TAG, "Animating it"); } return stopView; @@ -74,15 +73,15 @@ public class BusStopSpecificTimetableAdapter extends BaseAdapter { } public void updateTimetable(Timetable newTimetable) { - Log.v(TAG, "Old timetable " + timetable); - Log.v(TAG, "Adaptor loading new timetable"); + // Log.v(TAG, "Old timetable " + timetable); + // Log.v(TAG, "Adaptor loading new timetable"); changed = new boolean[newTimetable.size()]; for (int i = 0; i < newTimetable.size(); i++) { if (!timetable.contains(newTimetable.get(i), true)) { changed[i] = true; - Log.i(TAG, "Old timetable does not contain: " + newTimetable.get(i)); + // Log.i(TAG, "Old timetable does not contain: " + newTimetable.get(i)); } else { - Log.i(TAG, "Old timetable contains: " + newTimetable.get(i)); + // Log.i(TAG, "Old timetable contains: " + newTimetable.get(i)); changed[i] = false; } } |