diff options
author | Christopher Baines <cbaines8@gmail.com> | 2012-02-13 22:26:10 +0000 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2012-02-13 22:26:10 +0000 |
commit | 7e042d5406098591f3b0f8b94e47ffe3df40b34b (patch) | |
tree | 42a4ae10ed7bb7a49aa882ef9a18a4206235c51a | |
parent | ab8408070361aec1e5df48f8e67f66689ae9d606 (diff) | |
download | southamptonuniversitymap-7e042d5406098591f3b0f8b94e47ffe3df40b34b.tar southamptonuniversitymap-7e042d5406098591f3b0f8b94e47ffe3df40b34b.tar.gz |
Modified the stop toast making it shorter.
-rw-r--r-- | src/net/cbaines/suma/StopView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/cbaines/suma/StopView.java b/src/net/cbaines/suma/StopView.java index 62cbc7e..68be1f6 100644 --- a/src/net/cbaines/suma/StopView.java +++ b/src/net/cbaines/suma/StopView.java @@ -88,7 +88,7 @@ public class StopView extends LinearLayout implements OnClickListener { if (stop.live) { onClickMessage = "Unidentified bus (" + stop.bus.getName() + ") at " + DateFormat.getTimeInstance(DateFormat.SHORT).format(stop.arivalTime); } else { - onClickMessage = "Timetabled unidentified bus (" + stop.bus.getName() + ") at " + onClickMessage = "Timetabled bus (" + stop.bus.getName() + ") at " + DateFormat.getTimeInstance(DateFormat.SHORT).format(stop.arivalTime); } } |